Good day,
I have multiple checkboxes which determines the current status of the project.
I want a column in the front to give me the details of the most recent checkbox in the row.
The checkboxes follow a specific order as the project progresses. So the first one must be complete before the second one can be selected.
I want the status column to update with the latest checkbox status automatically.
The standard if statement works when I select the first column, however I reckon I need nested if statements to make this work, but I keep getting #unparseable
=IF([FIRST AID]@row = 1; "FIRST AID")
my nested if statements are as follow:
=IF(AND([FIRST AID]@row = 1; "FIRST AID"; IF([FIRE FIGHTING]@row = 1; "FIRE FIGHTING")))
I know I am missing something.
Assistance will be greatly appreciated.
Regards
MB