Moe,
I made a few tweaks to your formula to get it to work on my end the way I
would expect it to:
Switch(
[Baseline Start]=ProjDateValue("NA")),"No BL",
[Actual Cost]=0,"Not Started",
[Baseline Cost]>0 And abs([Cost Variance]/[Baseline Cost])<=0.05,"< 5%
Overbudget",
[Baseline Cost]>0 And abs([Cost Variance]/[Baseline Cost])>0.05 And
abs([Cost Variance]/[Baseline Cost])<=0.1,"5.01%-10% Overbudget",
[Baseline Cost]>0 And abs([Cost Variance]/[Baseline Cost])>0.1,"> 10%
Overbudget",
True,"Underbudget")
The only possible text values this formula can yield is "No BL", "Not
Started", "<5 % Overbudget", "5.01%-10% Overbudget", "> 10% Overbudget", or
"Underbudget"
So when you say that the text is coming back as a whole number such as 5 or
10, that doesn't make sense to me.
Also, what are the conditions you have for your graphical indicators. If I
was working with the formula above, I would use the following graphical
conditions as an example:
equals < 5% Overbudget [Yellow Circle]
equals 5.01%-10% Overbudget [Yellow Circle]
equals > 10% Overbudget [Red Circle]
equals Underbudget [Green Circle]
equals No Started [White Circle]
equals No BL [Gray Flag]
Jonathan
MK said:
Hi Jonathan,
You had asked what field - it is the cost status and this is the formula.
Switch(([Baseline Start]=ProjDateValue("NA")),"No BL",[Actual Cost]=0,"Not
Started",[Baseline Cost]>0 And abs([Cost Variance]/[Baseline
Cost])<=0.05,"<
5% Overbudget",[Baseline Cost]>0 And abs([Cost Variance]/[Baseline
Cost])>0.05 And abs([Cost Variance]/[Baseline Cost])<=0.1,"5.01%-10%
Overbudget",[Baseline Cost]>0 And abs([Cost Variance]/[Baseline
Cost])>0.1,">
10% Overbudget",True,"Underbudget")
The text (vs graphical indicators) is coming in at whole number such as 5
or
10.
I did refresh Project Pro - F9.
So...any ideas as to why this comes in on project center as text not
indicators?
Thanks for your continued help!