Hi All,
I have an app, where I only want a button to be visable if the current users email address matches a record stored within a Sharepoint List called 'Users'.
I have been trying to achieve this with a IF Statement with the Lookup function, however I have been unable to get it to work, I can't get my head around the syntax.
Current Code:
If(LookUp(Users, Txt_Email = User().Email, true), true, false)
Hope someone can help, thanks 🙂
Solved! Go to Solution.
The issue here is that when the predicate of a LookUp function includes Users().Email (or the return value of something else), a query that is usually delegable will become non-delegable.
If you were to hardcode your email address into the expression like so...
Not(IsBlank(LookUp(Users, Txt_Email = "yourname@domain.com")))
...you'll hopefully find that this results in a delegable expression that works (ie one without the blue lines). If so, you can resolve your problem by storing the result of User().Email in a variable, and using this value in your call to the Lookup function.
To do this, you would set the variable somewhere in your app (for example, the OnVisible property of your screen) using the following code:
UpdateContext({currentEmail:User().Email})
You should then be able to make Carlos's formula work by adapting it like so.
Not(IsBlank(LookUp(Users, Txt_Email = currentEmail)))
With regard to ignoring the warning, choosing to do so will result in incorrect results when the number of rows in your data source exceeds the number that's specified under App settings > Advanced Settings > Data row limit for non-delegable queries. I assume this is the case for your Users SharePoint list, which explains the incorrect behaviour that you're seeing.
You probably are looking for something along the lines of the expression below for the Visible property of the button:
Not(IsBlank(LookUp(Users, Txt_Email = User().Email)))
LookUp will return a blank item if it doesn't find any matches, so IsBlank will return true if the user is not found, and since you want the opposite of it for the visibility (button visible if the user is found) then you can use Not to invert that result.
You can ignore the warning. Please make sure the the filed you are storing the email address have correct format and value.
Try to use label controls on the screen and print the values to validate if the values are correct.
The issue here is that when the predicate of a LookUp function includes Users().Email (or the return value of something else), a query that is usually delegable will become non-delegable.
If you were to hardcode your email address into the expression like so...
Not(IsBlank(LookUp(Users, Txt_Email = "yourname@domain.com")))
...you'll hopefully find that this results in a delegable expression that works (ie one without the blue lines). If so, you can resolve your problem by storing the result of User().Email in a variable, and using this value in your call to the Lookup function.
To do this, you would set the variable somewhere in your app (for example, the OnVisible property of your screen) using the following code:
UpdateContext({currentEmail:User().Email})
You should then be able to make Carlos's formula work by adapting it like so.
Not(IsBlank(LookUp(Users, Txt_Email = currentEmail)))
With regard to ignoring the warning, choosing to do so will result in incorrect results when the number of rows in your data source exceeds the number that's specified under App settings > Advanced Settings > Data row limit for non-delegable queries. I assume this is the case for your Users SharePoint list, which explains the incorrect behaviour that you're seeing.
Thanks this method worked perfectly.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
198 | |
172 | |
62 | |
33 | |
32 |
User | Count |
---|---|
339 | |
271 | |
105 | |
71 | |
58 |