So the below formula however its resulting in a text result, i.e. left aligned. I'm then trying to run an AVG/Collect or AverageIF formula on this column however its providing a #DIVIDE BY ZERO result.
Any idea/thoughts on how to resolve this?
Below is the formula resulting in a 'text' result that I cant run a count/avg formula on:
=IF(Status@row = "1.Not Started", "0%", IF(Status@row = "2.Extraction in Progress", "20%", IF(Status@row = "3.Transformation in Progress", "40%", IF(Status@row = "4.Pre-Load Approval Pending", "50%", IF(Status@row = "5.Load in Progress", "75%", IF(Status@row = "6.Post-Load Approval Pending", "80%", IF(Status@row = "7.Complete", "100%")))))))
I've tried changing the formula to the below i.e. removing the %'s:
=IF(Status@row = "1.Not Started", "0", IF(Status@row = "2.Extraction in Progress", "20", IF(Status@row = "3.Transformation in Progress", "40", IF(Status@row = "4.Pre-Load Approval Pending", "50", IF(Status@row = "5.Load in Progress", "75", IF(Status@row = "6.Post-Load Approval Pending", "80", IF(Status@row = "7.Complete", "100")))))))
But this is still resulting in a left aligned text result. So I then created another column to convert the above result into a value using the below formula:
=VALUE([% Complete Convert]@row)
But I'm assuming there must be a better way of doing this?
Thanks in advance
Angela