I am trying to figure out how to determine if an item in my collection is visible in the grid after filtering? I'd like to update the following UpdateIf
code for only those records showing:
UpdateIf( Nominations, true, { Status: {Value: "Approved"}, 'Approved By': varUser } );
It seems straightforward, but I simply can't find the answer. Thank you very much!
I've tried the following code without success:
Filter(MyCollection, Visible = true)