Hello, I'm trying to get a PowerApps that reserves a parking Space. The reserve button matches the user id to the Tokens available to each user. The Action Button should substract 1 token from a Tally.
This is the Onselect script:
BayShareBookingFlow_New_2.Run(
First(
Filter(
Tokens;
And(
Tenant.Email = User().Email;
Month(ThisItem.'Vacancy Date') = Month_x0020_
)
)
).ID;
ThisItem.Title;
Text(
ThisItem.'Vacancy Date';
"[$-en-GB]dd/mm/yyyy"
);
ThisItem.Floor
)
Im getting the following error: " Number of arguments is invalid, 4 received, when 1 is expected" (rough translation from Spanish)
Here is a screenshot of the Flow: (Apologies for it being in Spanish)
How do I push all 4 arguments to Run the Flow and output a GetToken Identifier.
Thanks in advance!

Report
All responses (
Answers (