I have a Text/Number Column with the following nested 'IF' function generated Percents based on a status column:
IF(Milestone3 = "Proposed", "0%", IF(Milestone3 = "In Progress", "10%", IF(Milestone3 = "Assigned to QA", "20%", IF(Milestone3 = "QA in Progress", "30%", IF(Milestone3 = "Ready for Staging", "40%", IF(Milestone3 = "PM Initiated UAT Testing and Sign Off", "50%", IF(Milestone3 = "Documentation Complete", "60%", IF(Milestone3 = "Training Complete", "70%", IF(Milestone3 = "In Production", "80%", IF(Milestone3 = "PM Internal Testing on Production", "90%", IF(Milestone3 = "Client Acceptance Testing and Final Sign Off", "100%")))))))))))
I then take the results of that column and tried the weighted average and the child average functions to generate the percent complete for that task group:
Either: (
=AVGW([% Complete]10:[% Complete]15, [Points of Effort]10:[Points of Effort]15)
or
=AVG(CHILDREN([% Complete]3:[% Complete]8))
Both give me the result of #Divide by Zero.
However, there are no '0's or Blanks in my fields. I think that the values the IF function is entering are not being recognized as numerical values.
Have you experienced this or know a way around this issue?
Best,
DRTYBLK7