converting grams to pounds and ounces

thomasm61

New Member
Joined
Sep 20, 2010
Messages
12
I had no trouble converting pounds and ounces to grams, but it's driving me crazy trying to figure out how to reverse the calculation by grams, so that pounds appear in one cell and ounces in another.

I know I need one calculation/cell for the pounds and another for the ounces, but I'm not sure where to go from there.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
What are the conversion factors for grams>pounds>ounces?
 
Upvote 0
I was working with the convert command, which provides grams to ounces or pounds; the trick is what to do with the remainder and avoid rounding in the first field. Say your result is 4.6 pounds ... the first field needs to say 4 (w/out rounding up) and the second needs to add the ounces in 16ths of a pound.

I just don't know the syntax to make this happen.
 
Upvote 0
If you have a number in A1 representing grams then you can use this formula for pounds

=INT(ROUND(A1/28.34952,0)/16)

and for ounces

=MOD(ROUND(A1/28.34952,0),16)

This will round to the nearest ounce
 
Upvote 0
Here's an alternative using Excel's CONVERT function:
Excel Workbook
ABC
1gramslbsoz
247010.58
Sheet12
 
Upvote 0
You can also use DOLLARFR
Code:
=DOLLARFR(CONVERT(A1,"g","lbm"),16)
Custom format your cell
Code:
# "lbs". 00 "oz"

lenze
 
Upvote 0
Thanks for all the tips!

Another question if anybody feels up for a challenge: So I have my three cells -- pounds, ounces, grams -- is it possible to make all the cells convert both ways, so that whenever any number is put a field, its US or metric equivalent shows up in the other?
 
Upvote 0
Wanted to add that Barry Houdini's formula did exactly what I was trying to figure out how to do.

Also, the same concept applies to converting centimeters/meters to feet and inches; just use "ft" or "in" in place of "lb" and "oz", and "cm" or "m" in place of "g" (and use 12 instead of 16)
 
Upvote 0

Forum statistics

Threads
1,214,999
Messages
6,122,645
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top