SIMPLE SUMIF:

R

REPorter

I Just need to make a SIMPLE sumif.
100 90 cut fill

if the difference between cell 1 and 2 if less then 0, then put it in cell
3, if not leave it blank

if the difference between cell 1 and 2 if greater then 0, then put it in
cell 4, if not leave it blank.

help!
 
P

Pete_UK

Assuming cell 3 is actually C1, then try this:

=IF(A1-B1<0,A1-B1,"")

and put this in D1:

=IF(A1-B1>0,A1-B1,"")

If A1 is the same as B1 (so the difference is zero), then both cells
will appear blank.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top