Skip to main content
added 4 characters in body
Source Link
Dhruvil Prajapati
  • 2.4k
  • 1
  • 19
  • 33

The workaround for this issue is to use the Flexible height gallery, group the elements we are adding in the gallery and set the visible property using the same formula you have used.

First, on your app start, save the email id of the current user in a variable.

Set(varCurrentUserEmail,User().Email); 

We can use varCurrentUserEmail while applying the below formula.

varCurrentUserEmail in ThisItem.PeopleWork.Email 

At the single item/group level you will not get the delegation warning.

enter image description here

The data source of the gallery will be your List and no filter is applied over theredata source of the gallery will be your List and no filter is applied over there. As we are using the Flexible Height gallery, it will show only those items for which the current user is part of the people work field.

References:

  1. PowerApps Delegation & Gallery Filtering using Person column (single and multi select)
  2. PowerApps Delegation & Gallery Filtering using multi select Choice and Lookup Columns

The workaround for this issue is to use the Flexible height gallery, group the elements we are adding in the gallery and set the visible property using the same formula you have used.

First, on your app start, save the email id of the current user in a variable.

Set(varCurrentUserEmail,User().Email); 

We can use varCurrentUserEmail while applying the below formula.

varCurrentUserEmail in ThisItem.PeopleWork.Email 

At the single item/group level you will not get the delegation warning.

enter image description here

The data source of the gallery will be your List and no filter is applied over there. As we are using the Flexible Height gallery, it will show only those items for which the current user is part of the people work field.

References:

  1. PowerApps Delegation & Gallery Filtering using Person column (single and multi select)
  2. PowerApps Delegation & Gallery Filtering using multi select Choice and Lookup Columns

The workaround for this issue is to use the Flexible height gallery, group the elements we are adding in the gallery and set the visible property using the same formula you have used.

First, on your app start, save the email id of the current user in a variable.

Set(varCurrentUserEmail,User().Email); 

We can use varCurrentUserEmail while applying the below formula.

varCurrentUserEmail in ThisItem.PeopleWork.Email 

At the single item/group level you will not get the delegation warning.

enter image description here

The data source of the gallery will be your List and no filter is applied over there. As we are using the Flexible Height gallery, it will show only those items for which the current user is part of the people work field.

References:

  1. PowerApps Delegation & Gallery Filtering using Person column (single and multi select)
  2. PowerApps Delegation & Gallery Filtering using multi select Choice and Lookup Columns
Source Link
Dhruvil Prajapati
  • 2.4k
  • 1
  • 19
  • 33

The workaround for this issue is to use the Flexible height gallery, group the elements we are adding in the gallery and set the visible property using the same formula you have used.

First, on your app start, save the email id of the current user in a variable.

Set(varCurrentUserEmail,User().Email); 

We can use varCurrentUserEmail while applying the below formula.

varCurrentUserEmail in ThisItem.PeopleWork.Email 

At the single item/group level you will not get the delegation warning.

enter image description here

The data source of the gallery will be your List and no filter is applied over there. As we are using the Flexible Height gallery, it will show only those items for which the current user is part of the people work field.

References:

  1. PowerApps Delegation & Gallery Filtering using Person column (single and multi select)
  2. PowerApps Delegation & Gallery Filtering using multi select Choice and Lookup Columns