Hi & Happy Friday,
I'm putting together a status reporting sheet and I need to be able to update the previous and latest rows, based on a separate column, in this case the Submission Status column.
Formula in the Previous column is:
=IF(([HC-Row ID]@row + 1) = MAX([HC-Row ID]:[HC-Row ID]), 1)
Formula in the Latest column is:
=IF(([HC-Row ID]@row) = MAX([HC-Row ID]:[HC-Row ID]), 1)
I can either use the Created Date column or as I have been trying, use a Row ID based method.
What I want to do is, for the Previous and Latest columns, only include the Submission Status of "5-Approved" as the criteria for the formula. I just can't seem to get it to work, tried various variations of formulae, the formula generator, and the community info. I know this is probably very simple but, not for me today :-)
So for the Previous column., it would be something like:
IF([Submission Status]@row = "5-Approved" then (using the row ID method)
=IF(([HC-Row ID]@row + 1) = MAX([HC-Row ID]:[HC-Row ID]), 1)
For the Latest column, it would be something like:
IF([Submission Status]@row = "5-Approved" then (using the row ID method)
=IF(([HC-Row ID]@row) = MAX([HC-Row ID]:[HC-Row ID]), 1)
Or would it be best / better practice to use the Created column, rather than the Row Id based method.
As ever, any help would be great.