Trying to work out the difference in 2 cells.

S

scary

Hi,

Hope somebody can help.

I am trying to work out the difference between 2 cells EG: 1 cell J51 has a
total amount of £900.00 and cell J52 has total amout of £1500.00. I want to
try and work out and show in cell J53 the total if J51 is greater than J52 or
if J51 is Less then J52 I have tried various ways but don't seem to get the
answer I want.

I hope I have made myself clear.
 
B

Bernard Liengme

Or maybe =IF(J51=J52,"Peter and Paul are equal",IF(J51>J2, "Peter has
more","Paul has more"))
OR =J1>J2 will return either TRUE or FALSE
best wishes
 
P

Pete_UK

Perhaps you want:

=ABS(J52-J51)

which will give you the (positive) difference between the two, but
will not tell you which is the larger of the two.

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