How would I do this?

J

jwahlton

I'm trying to work on a weight loss spreadsheet. What would my forumula look
like if I needed to do this:

[(Start weight - Finish Weight) X 100 / Start weight = percentage lost.]

Thank you

Julia
 
M

Mike H.

Here is the way I'd do it. If StartWeight is in E4, FinishWeight is in F4,
then:

=IF(ISERROR(((E4-F4)*100/E4)),0,((E4-F4)*100/E4))

This formula not only gives the right results, it avoids error messages for
unused rows that the formula appearas on. Just copy and paste it to use it.
And happy losing!
 
M

Mike H.

One other thing, if you are going to have several people and you wish to have
lines for each person's weight loss each week, for example, I'd set up a
table of the people and their starting weight and instead of having E4 be
just a number, I'd make it a lookup to the table of people so you could
"bring in" the startweight.

Mike H. said:
Here is the way I'd do it. If StartWeight is in E4, FinishWeight is in F4,
then:

=IF(ISERROR(((E4-F4)*100/E4)),0,((E4-F4)*100/E4))

This formula not only gives the right results, it avoids error messages for
unused rows that the formula appearas on. Just copy and paste it to use it.
And happy losing!


jwahlton said:
I'm trying to work on a weight loss spreadsheet. What would my forumula look
like if I needed to do this:

[(Start weight - Finish Weight) X 100 / Start weight = percentage lost.]

Thank you

Julia
 

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