Negative equations
Negative equations
Hi All,____I am trying to display a negative number in a formula. my formula goes like this: IIF(PRICE1=0,PRICE1*100,(PRICE1-COST1)/PRICE1)whichgive me 0%. I need it to display -100%. Is there any way to do this. I have tried everything.____Thanks in advance,____Linda:^(
=> RE: Negative equations
IIF(PRICE1=0,PRICE1*100,(PRICE1-COST1)/PRICE1)____Not sure if I understood the question but if you want the answer to be -100% when price1 is zero would the formula not be more along the lines of____IIF(Price1=0,-1,(Price1-Cost1)/Price1)____If this is formatted on the display as a percentage then the display should be -100% when price1=0
==> RE: Negative equations
Worked like a charm!____Thank You.:7