Hi, @Darren_Murphy. I appreciate the input. I’m already using ITE to allow admins to view specific records using the In-App Filter based on the boolean value of the two columns I referenced earlier (plus others).
I guess what I really need is an ITE + AND/OR expression option inside of Glide tables (column type) like is available in the builder’s In-App Filter:
This way I wouldn’t need to create a user-triggered action like you mentioned. I could simply add an AND expression to the first “Approve” case in the example below and only display a value of “Approved” if the the Approve column was true AND the date is on or after today’s date, otherwise display “Archived”:
What @Darren_Murphy is asking for would help a lot to give you a definitive answer, but purely guessing what you might need, I would do something like this to handle AND/OR logic in an IF column:
IF Pending is true THEN Pending
ELSE IF Hide is true THEN Hidden
ELSE IF Date is before Today THEN Archive
ELSE IF Approved is true the Approved
Else Archive
It’s all about reversing your logic and thinking to check for any condition that would be false instead of checking for something that would make it true. If nothing makes it false, then you return the true value. If columns always stop once they find a condition that results in a true condition.
Awesome, these two additional statements did the trick! @Jeff_Hager, I appreciate you taking time to look this over and provide guidance on a workaround.
You, @Darren_Murphy, and several others are always so generous with your time and expertise; it doesn’t go unnoticed. Thanks again you guys.