My app had been working great for days, but of course I wasn't done with it. Now, I can't even get some simple variables set. In the App Start section, I define the following variables and none of them seem to get set. Even the very simple ones:
Set(varUserEmail, User().Email);
Set(varUser, User());
Set(varUserF, User().FullName);
Set(CheckInState,LookUp(Sort('OfficeCheckINOUT-DATA', ID, Descending),Title=varUserF && CheckedInStatus="X").CheckedInStatus);
Set(TEST, "TEST");
The formula on my test page to view the simple TEST variable is:
Yet, all I get is the TEXT portion of my label:
Any ideas as to what I've done to create this problem?
Hi @AaronTheYoung ,
Firstly try putting the TEST set higher up - I have a feeling that the code below is failing and not running the next Set command
Set(
CheckInState,
LookUp(
Sort(
'OfficeCheckINOUT-DATA',
ID,
Descending
),
Title=varUserF &&
CheckedInStatus="X"
).CheckedInStatus
)
If so, try this
With(
{
vData:
Sort(
'OfficeCheckINOUT-DATA',
ID,
Descending
)
},
Set(
CheckInState,
LookUp(
vData,
Title=varUserF &&
CheckedInStatus="X"
).CheckedInStatus
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
NONE of the variables are being set. Before or after that code. All of this variable setting was working. This is CRAZY frustrating. I think I'm going to open up a ticket with MS. This seems broken.
Experiencing the exact same issue PLUS formulas are not calculating.
NO variables are setting. On any screen. Even when triggered with buttons
Also a loader screen which has a visibility condition of
CountRows(gallery1.AllItems) >10 doesnt work even though the gallery has loaded and has way more than 10 items.
This just started recently. There were no changes to the app. One day it worked, the next it didn't.
Please let me know if you find a solution.
Thanks!
User | Count |
---|---|
256 | |
107 | |
90 | |
51 | |
44 |