I have a gallery with the datasource set to Sharepoint. I am also filtering by user and selected admin. This is the syntax i have in the Items, it works fine.
If(User().Email in varAdminEmail, KBXoffline, Filter(KBXoffline, 'Created By'.Email = User().Email))
I want to also show only the last 15 entries. I have tried using LastN(KBXoffline, 15), which works when put in Items by itself, however i can not seem to be able to add it to the existing syntax.
If(User().Email in varAdminEmail, KBXoffline, Filter(KBXoffline, 'Created By'.Email = User().Email));
LastN(KBXoffline, 15)
Can anyone please assist,
KR's,
Matt383