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

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Can you give an example - you have a figure in grammes (?) and you want to convert to Stones, pounds and ounces? In a single cell or in three separate cells?
 
Upvote 0
yeh, i have my babies weight in grammes in one cell, and i want to have 3 cells with stn, lb and oz in them. i allready have the lbs and oz sorted, :)
 
Upvote 0
There are many ways you could achieve that. Assuming you have grammes in A2 then try this formula for stones

=INT(ROUND(A2/28.34952,0)/14/16)

then for pounds

=INT(MOD(ROUND(A2/28.34952,0),14*16)/16)

....and ounces

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

That will give you a result to the nearest ounce
 
Upvote 0

Forum statistics

Threads
1,216,100
Messages
6,128,834
Members
449,471
Latest member
lachbee

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