Convert Ounces to Pounds & Ounces

gumuruku

New Member
Joined
Dec 5, 2005
Messages
6
I'd like to convert ounces (e.g., 33 oz) to pounds and ounces (e.g. 2 lbs, 1 oz). Any suggestions?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Welcome to the board.

Try:

Code:
=INT(A1/16)&" lbs "&(A1-INT(A1/16)*16)&" oz"

Where A1=33.
 
Upvote 0
Followup question

I have a followup question.

If I enter a value like 16.3 lbs, the formula above returns 1 lb 0.300000000000001 oz. The correct answer should be 1 lb 4.8 oz. I've tried various ROUND functions but can't get this to work. How can I modify the syntax provided above to correct for this?
 
Upvote 0
Correction to my followup question

I meant to say that if I enter 16.3 oz, I get a value = 1 lb 0.300000000000001 oz. It should be 1 lb 4.8 oz.
 
Upvote 0
STOP - I messed up! One more time!
What I REALLY want to do is this:
If I enter 16.3 oz, I'd like to obtain a result rounded to the nearest tenth. So, I want to convert 16.3 oz and obtain a result = 1 lb 0.3 oz.
 
Upvote 0
Just slip a TEXT() into Oaktree's formula, setting the 2nd arg of TEXT() per your requirements.<ul>[*]=INT(A1/16)&" lbs "&TEXT((A1-INT(A1/16)*16),"0.0 oz")[/list]{edited to put the OZ inside the TEXT() function. geez.}
 
Upvote 0
Try changing
Code:
&(A1-INT(A1/16)*16)&
to
Code:
&round(A1-INT(A1/16)*16,1)&
 
Upvote 0
Just for reference, you might also take a look at the <ul>[*]DollarDe() and[*]DollarFr()[/list]functions in Excel help. They can be very useful in converting things like pounds & ounces, feet & inches and so forth.
 
Upvote 0

Forum statistics

Threads
1,224,300
Messages
6,177,754
Members
452,798
Latest member
mlance617

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