weight loss

  • Thread starter Thread starter Scoober
  • Start date Start date
S

Scoober

Hi,

How can I make this formula show as a negative figure when it shows weight
has been lost and positive when weight has been put on. At the moment it is
doing the opposite to what I require.

b3 = last weeks weight
b4 = This weeks weight
c4 = answer

=IF(B4="","",B3-B4)

Thanks in advance.

Scoober
 
Just reverse the subtraction:

=IF(B4="","",B4-B3)

Hope this helps.

Pete
 
Hi there.
Just do:

=IF(B4="","",B4-B3)

Best regards,
Otávio
 

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

Back
Top