Hi all,
I create a gallery on PowerApps where is shows for all item that has been created. The edit form can be enter by many users. I need help on how do I write a code where once a form is submitted by a user, only that user is able to see the submitted form.
For example, User A submit a form and at the gallery it should only show form submitted by User A. User B can only see form submitted by User.
The code below is the current code that is used for my gallery at the moment.
Filter('sharePointName',StartsWith(No,SearchInput.Text))
Appreciate all help!
Solved! Go to Solution.
Please consider changing your Formula to the following:
Filter('sharePointName', StartsWith(No,SearchInput.Text) && StartsWith('Created By'.Email, User().Email))
This will ensure that it is using the unique ID of the user - the email. StartsWith in the formula is used to avoid the potential of letter case being different between the User() function and the actual email stored.
I hope this is helpful for you.
Hello,
All sharepoint lists have (by default) a "Create by" field.
In Sharepoint, when you are on your list, you can modify the display to see it (it is present but invisible by default).
In your formula, you can use the "User" function to compare:
Filter(
sharePointName;
'Create by'.DisplayName = User().FullName
)
Please consider changing your Formula to the following:
Filter('sharePointName', StartsWith(No,SearchInput.Text) && StartsWith('Created By'.Email, User().Email))
This will ensure that it is using the unique ID of the user - the email. StartsWith in the formula is used to avoid the potential of letter case being different between the User() function and the actual email stored.
I hope this is helpful for you.
It worked, thank you andy!!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
187 | |
53 | |
41 | |
37 | |
31 |
User | Count |
---|---|
250 | |
75 | |
71 | |
68 | |
65 |