Hi @Anonymous
On App Load, create a variable to store the current user email or object
Set(varCurrentUserEmail, User().Email)
For gallery use filter function on Items property
Filter(DataSource, 'Created By'.Email = varCurrentUserEmail)
Plz note :- this would give you a delegation warning because Created By is a person or group type column which is a complex column (delegation will return upto 2000 records only)
In order to avoid delegation, create another column called "CreatedByText" and store the created by users email in there
then you could use
Filter(DataSource, CreatedByText = varCurrentUserEmail) which would avid the delegation warning
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly