Hello
I am improving an App for field inspections that contains a Gallery with Filter functions and an IN function, here is the Items commend:
Filter(
Filter('Neptune - Bulk Material handling',
('Asset Name' = dd_Nepassets.Selected.Result) && (DropdownBlock_3.Selected.Result = 'Block Name')
),
TextSearch_3.Text in Title || TextSearch_3.Text in 'Location Detail'
)
My objective is to highlight the last submitted record on the Gallery using a variable record created with LastSubmit function. My conclusion following long investigation is that the IN function is preventing from achieving my goal, looks like the new/edited records are excluded from the query so the default have no record to highlight.
Any suggestions on how to deal with this?
Thanks