Hello everyone,
I'm having some issue in one of my PowerApps where a admin collection of emails is being used to view a page. Although the persons email is on the SP list, two people out of the 6 are still are not able to see the gallery grid in the screen(IMA_GridEditScreen2). I do see there is a delegation warning, but the list only consists of 6 users. Also when hovering over collection, it says "We didn't find any data."
Collection is called IMA_EDW_Admin_List
Code for OnSelect Button for Admins:
If(
CountRows(
Filter(
DataManagementAdminList,
Lower(LoggedUserEmail) in Lower(Title)
)
) > 0,
Navigate(
IMA_DataManaegment_AdminHomeScreen,
ScreenTransition.Cover
)
);
If(
CountRows(
Filter(
IMA_EDW_Admin_List,
Lower(LoggedUserEmail) in Lower(Title)
)
) > 0,
Navigate(
IMA_GridEditScreen2,
ScreenTransition.Cover
)
);
If(
CountRows(
Filter(
DataoutcomeAdmingList,
Lower(LoggedUserEmail) in Lower(Title)
)
) > 0,
Navigate(
IMA_DataOutcome_AdminHomeScreen,
ScreenTransition.Cover
)
);
If(
CountRows(
Filter(
CelonisAdminList,
Lower(LoggedUserEmail) in Lower(Title)
)
) > 0,
Navigate(
IMA_Celonis_AdminHomeScreen,
ScreenTransition.Cover
)
);
If(
CountRows(
Filter(
BPMAdminList,
Lower(LoggedUserEmail) in Lower(Title)
)
) > 0,
Navigate(
IMA_BPM_AdminHomeScreen,
ScreenTransition.Cover
)
);