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

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

javascript - Clean way to programmatically use CSS transitions from JS? -

android - send complex objects as post php java -