Pounds to ounces

F

Fizz

I have 2 columns for weight.
Col A is in pounds
Col B is in ounces
16 ounces = 1 pound

The columns are totaled using @SUM. Typical totals are 12 pounds and
37 ounces. I want the next line to show the correct presentation which
is 14 pounds and 5 ounces.

How can this be done?
 
B

Bob Phillips

Pounds: =SUM(A1:A10)+INT(SUM(B1:B10)/16)
Ounces: =MOD(SUM(B1:B10),16)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

gsering

Hello,

I use this very same idea, but I output a text cell as well using
CONCATENATE:

=CONCATENATE(SUM(B2:B29)+INT(SUM(B2:C29)/16),"lbs.","
",MOD(SUM(C2:C29),16),"oz.")

The output is: "42lbs. 15oz." marked as text for this cell, but in
another I keep the numbers for later calculation.

GCS
 

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