I have 3 columns:
- Action Plan
- Move Row (checkbox)
- Helper
I need to check the box if the following is met:
- 2 exact values in the helper column.
- If the Action Plan is empty.
- Check the checkbox in the row with the empty Action Plan.
I keep getting an error using this formula if the Action Plan is empty (2nd line):
=IF(COUNTIFS([Action Plan]@row, ISBLANK(@cell)), IF(COUNTIFS(Helper:Helper, Helper@row) > 1, 1))
If not, it is fine (1st line).
Thanks in advance.