I have a RAID log sheet where I want to add a helper column to capture the aging (duration) of each issue row that has not been marked as complete (and I want to convert the formula to a column formula). This sheet is generated for each project via our control center solution so there are several rows at the top of the sheet (for project summary info, etc…) that I essentially want the column formula to ignore since they are being used for summary info and don't actually contain project issue information.
Here is the original formula I used that did work to calculate the aging of each RAID row that had a status of other than complete:
=IF((Status@row <> "Complete"), TODAY() - Created@row )
But when I tried to add on to this formula to leave blanks for any rows that have no value in the status column, I just kept getting an unparseable error. I tried too many variations to list them all here, but here was the latest attempt. Where am I going wrong in my formula syntax?
=IF(ISBLANK([Status]@row ), “ ”, IF([Status]@row <> “Complete”, TODAY() - Created@row ))
See screenshots of actual sheet for reference.