Index Collect Max | Get the most recent item based on Created Date
Options

heyjay
✭✭✭✭✭
Im using the formula below, but getting an error #INCORRECT ARGUMENT SET
=INDEX(COLLECT([Current Note]1:[Current Note]7, Auditor1:Auditor7, Auditor@row, [Created Date]1:[Created Date]7, MAX([Created Date]1:[Created Date]7)))
...
Tags:
Answers
-
Add a helper checkbox column with this
=IF([Created Date]@row = MAX(COLLECT([Created Date]:[Created Date], Auditor:Auditor, Auditor@row)), 1, 0)
Then use this to get the lastest note
=INDEX(COLLECT([Current Note]:[Current Note], Newest:Newest, 1, Auditor:Auditor, Auditor@row), 1)
-
@Paul H - Thanks for this recommendation. It helped me today!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!