Excel if cell exceeds certain value use difference

Ray picture Ray · Nov 22, 2013 · Viewed 15.5k times · Source

I can't come up with the right formula for this.

Cell B3 contains a value. In cell C3 is the formula which should calculate: if B3 exceeds 1500, i want it to display the difference. E.g. IF value of B3 is 1600, C3 should display 100.

Thanks, can't get my head around it.

Answer

Black.Jack picture Black.Jack · Nov 22, 2013
=if(B3>1600;B3-A3;"")

Honestly i didn't catch the other operand of the difference you describe, but that is the If formula..

hope it helps..