Hi,
I am new to Power apps and trying to sort the latest data in power apps gallery. It is working when I am using only Sort function as below -
Sort('Test', 'ID', Descending)
How do I use this along with if and filter option like below - (This formula I am using to filter and show user specific data)
If(User(). Email In VarAdminemail, 'Test', Filter('Test', Email = VarUser. Email)))
Thanks