Formula to change 'Stones - Pounds' to Pounds?

papillon

Board Regular
Joined
Oct 14, 2002
Messages
88
Hi All,
Does anyone know of a formula to change imperial stones and pounds to just pounds eg 13 stones 3 lbs = 185lbs ? (14 pounds to a stone)
Thanks,
papillon
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
This is just simple math

(NumberOfStone * 14) + Number of Pounds

As an Excel formula

=(Stone*14)+Pounds

But DRJ's question remains relavant because if the amounts are stored as text, you'll need to write an interpreter.

If each record's values (Stone and Pounds) are stored in single cell, that is another consideration.

Finally, if the Stones are in one column and the Pounds in another, then the simple math I gave you will work.
 
Upvote 0
Hi DRJ & nbrcrunch,
Thanks for replying, the values are stored in a single cell - eg 13.3 - the value 13 are stones.
Many thanks,
papillon
 
Upvote 0
So the decimal amount is always pounds? If so then if the value is in A1 try this formula.

=Int(A1)*14 + (A1-Int(A1))*10
 
Upvote 0
Hi Jacob,
Unfortunately, that formula didn't work, the decimal point is there just to separate the stones and the pounds and not to express the pounds as a percentage
Thanks,
papillon
 
Upvote 0
is a number always enterred with a decimal ?
ie 12.0
or if the number of pounds is zero does the entry just become '12' ?
 
Upvote 0
here is a possible solution for you. it is originally written in french so the second line is a translation and might have to be checked in your help file.

=SI(ESTNUM(TROUVE(",";A4));(STXT(A4;(TROUVE(",";A4)+1);5)+(TRONQUE(A4)*14));(A4)*14)

=if(isnumber(find(".",A4)),(mid(A4,(find(".",A4)+1),5)+(trunc(A4)*14)),(A4)*14)

the above assumes A4 is the cell in which the stones and pounds are in.

also, i believe that the english version of excel uses commas as separators in place of my semi-colons.

pls advise if this helps
 
Upvote 0
Hi sqrob,
The number has always been entered with a decimal but if pounds are zero, nothing is entered.
Thanks for the formula but it was way over my head I'm afraid,
Thanks,
papillon
 
Upvote 0

Forum statistics

Threads
1,215,139
Messages
6,123,263
Members
449,093
Latest member
Vincent Khandagale

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