Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Filtering records in main gallery based on most recent values in a related sharepoint list

(0) ShareShare
ReportReport
Posted on by 148

i have a gallery that can display the most recent relevant field from a related table using the following formula that returns true/false values 

 

LookUp(
Sort(
'Progress Notes',
ID,
Descending
),
RefID = ThisItem.ID,
'Escalation Required'.Value = "SWAT review"
)

 

Is there a way to incorporate this into the filter of my gallery to give the user the ability to filter if SWAT review or not based on a choice/dropdown/other control and have no delegation warnings?  thanks

Categories:
  • Verified answer
    WarrenBelz Profile Picture
    146,658 Most Valuable Professional on at
    Re: Filtering records in main gallery based on most recent values in a related sharepoint list

    Hi @cheezy ,

    Two ways - the first one only gets rid of the warning, but the top filter needs to return item numbers less than your Delegation Limit

    With(
     {
     wList:
     Filter(
     Sort(
     'Progress Notes',
     ID,
     Descending
     ),
     RefID = ThisItem.ID
     )
     },
     LookUp(
     wList,
     'Escalation Required'.Value <> "SWAT review"
     )
    )

    or you can list all the other possible values

    LookUp(
     Sort(
     'Progress Notes',
     ID,
     Descending
     ),
     RefID = ThisItem.ID &&
     (
     'Escalation Required'.Value = "THIS review" ||
     'Escalation Required'.Value = "THAT review" ||
     ) 'Escalation Required'.Value = "OTHER review"
    )
    

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,658 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,999 Most Valuable Professional

Leaderboard