Hey friends!
I want to combine the two below operations into one column:
I'd like to return the highest value in Auto-numbered column when the criteria is met from another column. ~Return the highest/largest auto-number, from the "Row ID | Auto-Numbered" column, matched with each ID# in the "⚠Mac ID#" column.
Then, when those two columns "Row ID | Auto-Numbered" & "▽Row ID | Max Row ID for Mac ID#" match, check a box.
Row ID | Auto-Numbered = Auto-Numbered column
▽Row ID | Max Row ID for Mac ID# = Checkbox column
⚠Mac ID# = Text/number column
This is what I've tried so far... Aaand not working.
=IF([Row ID | Auto-Numbered]@row = IF([⚠ Mac ID#]@row = "", "", MAX(COLLECT([Row ID | Auto-Numbered]:[Row ID | Auto-Numbered], [⚠ Mac ID#]:[⚠ Mac ID#], [⚠ Mac ID#]@row))), 1, 0)
Your help is appreciated!