Microsoft Excel if-then formula -
i discounting new autos. g2 msrp (sticker price) column. if g2 less $30,000 discount g2 times .003
, otherwise discount g2 times .002
.
this discount subtracted amount. here trying write:
if(g2<30000,-(g2*.003), -(g2*.004)))
this should correct:
if(g2<30000;-(g2*.003);-(g2*.004))
Comments
Post a Comment