While creating calculated columns on a team board, I continue to run into (quality of life) issues.
I am attempting to create a field that evaluates the % of Subitems Complete. Because formulas in the parent task cannot reference sub tasks without mirroring, I created a field that determines if the sub task is completed or not (Subitems Completed). This value brings in blank entries for tasks that contain no subtasks. To overcome this I have attempted to create conditional statements that set the value to 0 and none work on a rollup level. I have tried many variations of this formula with no luck. Any help would be appreciated.
IF(AND({Subitems Completed SubItems}>=0,{Subitems Completed SubItems}<= 100),(ROUND(DIVIDE({Subitems Completed SubItems},{Subitems#Count}),2) * 100),0)
The problem, is that even though the IF statement is supposed to set all other values to 0, it will not work when included in additional statements. Having a IFERROR, or a working IF statement, would make this SO much easier.