I am working PowerApps project to allow Users to update KPI data. I have created the app and I want to restrict users not to view entries created by others. For this, I have created connection to "Office365Users" and trying with below formula SortByColumns(Filter([@'SMDE-SLM-KPI'], 'Created By'.Email = Office365Users.MyProfile().Mail), "Created", Descending) -- However, I am getting Zero records... If I use my mail id for testing purpose (refer below), it works fine however, if I use Office365Users.MyProfile().Mail formula then I am getting Zero records.. SortByColumns(Filter([@'SMDE-SLM-KPI'], 'Created By'.Email = "raghavendra.sa@dxc.com"), "Created", Descending)