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
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
WarrenBelz
146,658
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,999
Most Valuable Professional