Hi team - I'm trying to create a nested COUNTIF function that returns either Not Started or In Progress in the Update Status column if any or all of the specific column rows are blank, otherwise show Complete.
Update status column has Not Started, In Progress, Complete as drop-down menu options.
I tried the following formula but it keeps coming back, the dreaded, UNPARSABLE:
=IF(COUNTIF([1. Aware of MS vulnerability?]@row,<>"") + COUNTIF([2. Use of any affected on-prem listed MS Exc Svr?]@row,<>"") + COUNTIF([3. Which MS Exchange Server version(s)?]@row,<>"") + COUNTIF([4. Describe DHS action steps taken]@row,<>"") + COUNTIF([5. Have malicious actors accessed your network?]@row,<>"") + COUNTIF([5. Have malicious actors accessed your network?]@row,<>"") + COUNTIF([Comment/Validation/Verification]@row,<>"") = 0, "Not Started", "In Progress"))
Snippet from the actual page:
What am I missing?