Formula to convert Oz back into autosum and add to left of decimal place

Jacko1307

Board Regular
Joined
Sep 4, 2012
Messages
92
Office Version
  1. 2016
Platform
  1. Windows
Help please,

I have a fishing club workbook that I have to sit and work out in Lbs and Ounces.

I have the format for cells as ustom 0" lb". 00" oz."

Once autosum has been applied to a range it will give a total in LBs and Ounces but counts all of the ounces up.

Is there a formula that anyone knows where I can automatically divide the ounces by 16 and any lbs moved to the left of decimal place and remaining ounces shown to the right.

Final sum required would be 34lb. 6oz. if this makes sense
 
Last edited by a moderator:

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Here is a sample

vABCD
1Total OzLbsOzCombined
2301141lb 14oz
317111lb 1oz
421151lb 5oz

and here are the formulas

vABCD
1Total OzLbsOzCombined
230=INT(A2/16)=MOD(A2,16)=CONCATENATE(B2,"lb"," ",C2,"oz")
317=INT(A3/16)=MOD(A3,16)=CONCATENATE(B3,"lb"," ",C3,"oz")
421=INT(A4/16)=MOD(A4,16)=CONCATENATE(B4,"lb"," ",C4,"oz")
 
Upvote 0
Here is a sample

vABCD
1Total OzLbsOzCombined
2301141lb 14oz
317111lb 1oz
421151lb 5oz

<tbody>
</tbody>

and here are the formulas

vABCD
1Total OzLbsOzCombined
230=INT(A2/16)=MOD(A2,16)=CONCATENATE(B2,"lb"," ",C2,"oz")
317=INT(A3/16)=MOD(A3,16)=CONCATENATE(B3,"lb"," ",C3,"oz")
421=INT(A4/16)=MOD(A4,16)=CONCATENATE(B4,"lb"," ",C4,"oz")

<tbody>
</tbody>

Alan,

Many thanks for the formula which I like but is there a formula that can autosum the Total weights i.e
1lb 14oz1lb 1oz1lb 5oz which using autosum gives 3lbs 20oz and what i need to do then is convert the 20oz to read 1lb 4oz and add to the total of the lbs which would give me
4lb 4oz if you get what I am trying to achieve or is it easier to autosum column B and C and do the calculation against the total Row to combine all data as a total


<tbody>
</tbody>
 
Last edited:
Upvote 0
You could give an example of how your data is on your sheet and what you expect from the result.
I'm not understanding, in B you have lb or oz. In C you have lb or oz.
Or what exactly do you have?
 
Upvote 0
easier to autosum column B and C and do the calculation against the total Row to combine all data as a total
Seems like a reasonable way to do it. Keep it simple. Why overthink the issue.
 
Upvote 0
Maybe something like


Book1
JK
23.153.9375
31.141.875
41.011.0625
56.14
Sheet1
Cell Formulas
RangeFormula
K2=DOLLARDE(J2,16)
K5=DOLLARFR(SUM(K2:K4),16)
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,140
Members
448,551
Latest member
Sienna de Souza

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