Jill said:
I need a formula that will do this:
Budget vs Actual...If Actual column is 10% more then budget column
show that value
If Budget column is B and Actual is C, you could use something like this:
=IF((C1-B1)/C1>10%,(C1-B1)/C1,"OK")
this will display OK if Actual column is under 10% then Budget column;
instead you could use:
=IF((C1-B1)/C1>10%,(C1-B1)/C1,"-")
this will display "-" (without quotes) if Actual column is under 10% then
Budget column; instead you could use:
=IF((C1-B1)/C1>10%,(C1-B1)/C1,"")
this will display a blank if Actual column is under 10% then Budget column.
--
Hope I helped you.
Thanks in advance for your feedback.
Ciao
Franz Verga from Italy