hello, hoping someone can help me out. i want to have the overall health of each workstream calculated based on the status in the following arguments
If values are greater than 0 for 'in progress' or 'complete' --> Green Circle
if 'complete' equals 'total' --> Blue circle
if 'not started' equals 'total' --> 'not started'
if 'at risk' greater than 0 (regardless of what is in the other columns)--> Red Circle
if 'delayed' greater than 0 (regardless of what is in the other columns)--> Yellow Circle
i started by testing the IF(OR for the Green Circle and am getting #INVALID COLUMN VALUE only for some rows, all my columns are text/number columns.
this is the formula i tried for "Green":
=IF(OR([Column14]@row > 0), ([Column12]@row > 0), "Green")
i also tried to string all arguments together like this:
=IF(OR([Column12]@row > 0), ([Column14]@row > 0)), "Green", IF([Column12]@row = [Column9]@row, "Blue", IF([Column13]@row = [Column9]@row, "Not Started", IF([Column8]@row > 0, "Red", IF([Column7]@row > 0, "Yellow", false))))