web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Filtering records in m...
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:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    155,962 Most Valuable Professional on at

    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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 305 Most Valuable Professional

#2
11manish Profile Picture

11manish 212

#3
Valantis Profile Picture

Valantis 167

Last 30 days Overall leaderboard