I'm trying to find and number in the Rank column the last two rows that have a status column with a check in the checkbox. I am using the following formula but am getting a #INVALID OPERATION error.
=IF(AND(Status@row = 1, [Row #]@row >= LARGE(COLLECT([Row #]:[Row #], Status:Status, 1), 2)), 1, 0)
The properties for each column are as follows:
Row # = # Auto number
Rank = Text/Number
Status = Checkbox
Row # Rank Status
141 | #INVALID OPERATION | true |
|---|
142 | | true |
143 | | |
144 | | true |
My expectations is that the row 142 will display '1' and row 144 will display '2' in the Rank column as these are the last two rows that have a checkbox in Status column.
Row # Rank Status
141 | | true |
|---|
142 | 1 | true |
143 | | |
144 | 2 | true |
Any ideas as to why I am getting the #INVALID OPERATION error?