How will 1 lb 12 oz show up in the cell?
BarrieBarrie Davidson
If your number is in A1, the formula
=FLOOR(A1,16)/16&" lb(s) "&ROUND((A1-INT(A1))*10,0)&" ozs"
would convert to your desired result. But I think you may have a bigger problem
How would 1 lbs 1 ounce be shown = 16.1
How would 1 lbs 10 ounce be show = 16.10 ???
How are you adding 6 ounces?
Let me see if I can explain better
In column B1 I have 10 (ounces)
in columb B2 I have =B1+0.6 and produces 10.6
This continues until 31 oz. I would like these number to show up as 1 lb 3.6 ounces etc.
Am I making sense?
Thanks
I think I got it.
Try
=FLOOR(B1,16)/16&" lb(s) "&(ROUND(B1-FLOOR(B1,16),1)&" ozs")
in cell B1 and copy it down.
I think this will work. I wrote the example using this formula in cell B1, reading weights in A1.
=IF(A1>16,CONCATENATE(ROUNDDOWN(A1/16,0)," lbs. ",ROUNDDOWN(A1-(ROUNDDOWN(A1/16,0))*16,1)," oz."),CONCATENATE(A1," oz."))
Hope this helps!
Thanks for your help, I REALLY appreciate it!