I have a lookup that pulls the users attachments and comments when they go back into a specific item. This is what I have in the onselect of the gallery If(!IsBlank(LookUp(ListData2, StepID=Text(Gallery2_1.Selected.C1) && Name_=User().FullName)),Navigate('Form Screen2',ScreenTransition.CoverRight,{locMode:FormMode.Edit,locItem:LookUp(ListData2, StepID=Text(Gallery2_1.Selected.C1)&& Name_=User().FullName)}), Navigate('Form Screen2',ScreenTransition.CoverRight,{locMode:FormMode.New,locItem:Blank()})). I have delegation errors for Name_=User().FullName)), how can i get rid of this?
Solved! Go to Solution.
I think the fix here is quite simple ๐
Write this code in the OnStart property of the app
Set(varUser, User());
Then replace any references in your code for User().FullName to this code instead
varUser.FullName
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
I think the fix here is quite simple ๐
Write this code in the OnStart property of the app
Set(varUser, User());
Then replace any references in your code for User().FullName to this code instead
varUser.FullName
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
185 | |
122 | |
91 | |
47 | |
42 |
User | Count |
---|---|
270 | |
158 | |
130 | |
84 | |
78 |