Can the Row Status (Locked vs Unlocked) be used in a cell formula with @row and IF functions?
I want to populate a Card View sorting field/cell with titles/headings using a column formula but I don't want the locked rows to be included in the auto-population of titles/headings since those will never need to be 'actioned'.
My current formula is:
=IF(Status@row <> "Complete", IF([Target Date]@row < TODAY(), "Critical, Overdue", IF([Target Date]@row < TODAY(5), "Active, Due in <1 week", IF([Target Date]@row < TODAY(12), "Pending, Due in <2 weeks", "Future, Due in >2 weeks"))), "Complete, Past History")
If I could add something like: IF([Row Action Indicator]@row="1","",
in front of the first IF in my current formula and close out the false statement section with an ")" at the very end, it should evaluate whether the Row is Locked and return a blank cell, or evaluate the rest of the content to determine what to populate the cell with when the lock status is "0" or unlocked.
I want all 'locked' rows to be "" (blank) in the CardView Sort cell. In my example above, only the R-003, R-004, R-005 and R-001 rows should have 'values' in the CardView Sort column... "Critical, Overdue" for R-003, -004, & -005; and "Complete Past History" for R-001.