If, or statement for percentage
I have this formula =IF(OR([Standard Phase/ current status]@row = "4", (([Phase \[%\]]@row * 0.25) + 75)), [Standard Phase/ current status]@row = "3", (([Phase \[%\]]@row * 0.25) + 50), [Standard Phase/ current status]@row = "2", (([Phase \[%\]]@row * 0.25) + 25), [Standard Phase/ current status]@row = "1", ([Phase \[%\]]@row * 0.25))
If Standard phase is 3, the calculation should be 50% + the percentage of stage complete in phase 3 *0.25
This is a 4 stage process and each stage has percentage of 25% when it is completed which is then to be added to the next stage finish percentage.
This formula gives me incorrect argument
Answers
-
=IF([Standard Phase/ current status]@row = 4,([Phase \[%\]]@row * 0.25) + 75),
IF([Standard Phase/ current status]@row = 3,([Phase \[%\]]@row * 0.25) + 50),
IF([Standard Phase/ current status]@row = 2,([Phase \[%\]]@row * 0.25) + 25),
IF([Standard Phase/ current status]@row = 1,([Phase \[%\]]@row * 0.25),"")
-
Thank you
Help Article Resources
Categories
Check out the Formula Handbook template!