Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default convert kilograms to stones AND pounds

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to pounds?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default convert kilograms to stones AND pounds

Hi

If you have a kilo weight in A1 then essentially your formula is:

=A1*2.2/14

to convert to Stones.

Apply a custom format of:

0 ?/14

will then give yo a return like:

10 5/14

meaning 10 stones, 5 pounds.

This what you wanted?

Richard

--
Richard Schollar

Microsoft MVP - Excel


"Bristlepete" wrote in message
...
Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default convert kilograms to stones AND pounds

=INT(CONVERT(A5,"kg","lbm")/14)&" st
"&ROUND(MOD(CONVERT(A5,"kg","lbm"),14),0)&" lb"
--
David Biddulph

"Bristlepete" wrote in message
...
Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default convert kilograms to stones AND pounds

This formula will give you stones and pounds from Kg

=INT(A3*0.071429)&" Stones "&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"


Gord Dibben MS Excel MVP


On Mon, 27 Oct 2008 15:44:01 -0700, Bristlepete
wrote:

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to pounds?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default convert kilograms to stones AND pounds

The following formula will return a string like "10 Stones 5 Pounds"
where cell A2 contains the weight in Kg.

=TRUNC(A2*2.2/14)&" Stones"&A2*2.2-(TRUNC(A2*2.2/14)*14)&" Pounds"

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Mon, 27 Oct 2008 15:44:01 -0700, Bristlepete
wrote:

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to pounds?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default convert kilograms to stones AND pounds

Gord,

=INT(A3*0.071429)&" Stones "&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"


Should you not have multiplied by 14 instead of 10? (Unless of course
Canada has metric stones <g)

and would it not be better to divide by 14 then multiply by 0.071429?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
This formula will give you stones and pounds from Kg

=INT(A3*0.071429)&" Stones "&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"


Gord Dibben MS Excel MVP


On Mon, 27 Oct 2008 15:44:01 -0700, Bristlepete
wrote:

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default convert kilograms to stones AND pounds

Chip,

Would it not be better to ROUND() or TRUNC() the pounds because you formula
returns

10 Stones 5.20000000000002 Pounds

for 66 Kg

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Chip Pearson" wrote in message
...
The following formula will return a string like "10 Stones 5 Pounds"
where cell A2 contains the weight in Kg.

=TRUNC(A2*2.2/14)&" Stones"&A2*2.2-(TRUNC(A2*2.2/14)*14)&" Pounds"

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Mon, 27 Oct 2008 15:44:01 -0700, Bristlepete
wrote:

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default convert kilograms to stones AND pounds

Would it not be better to ROUND() or TRUNC() the pounds because you formula
returns


Yes, it would be better. Thanks for the save.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 27 Oct 2008 23:59:30 -0000, "Sandy Mann"
wrote:

Chip,

Would it not be better to ROUND() or TRUNC() the pounds because you formula
returns

10 Stones 5.20000000000002 Pounds

for 66 Kg

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default convert kilograms to stones AND pounds

Thanks Sandy

Typo on the 10

Not sure what you mean by the second part.


Gord


On Mon, 27 Oct 2008 23:55:12 -0000, "Sandy Mann"
wrote:

Gord,

=INT(A3*0.071429)&" Stones "&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"


Should you not have multiplied by 14 instead of 10? (Unless of course
Canada has metric stones <g)

and would it not be better to divide by 14 then multiply by 0.071429?


  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default convert kilograms to stones AND pounds

An improvement to that:
=ROUND(CONVERT(A5,"kg","lbm")/14,0)&" st
"&MOD(ROUND(CONVERT(A5,"kg","lbm"),0),14)&" lb"

My original gave 10st 14 lb for 69.8 kg, for example, whereas my new formula
gives 11st 0 lb.
--
David Biddulph

"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
=INT(CONVERT(A5,"kg","lbm")/14)&" st
"&ROUND(MOD(CONVERT(A5,"kg","lbm"),14),0)&" lb"
--
David Biddulph

"Bristlepete" wrote in message
...
Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?







  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default convert kilograms to stones AND pounds

.... and even more interestingly:
11 Stones-1.98951966012828E-13 Pounds for 69.9999999999999 kg :-)
--
David Biddulph

"Sandy Mann" wrote in message
...
Chip,

Would it not be better to ROUND() or TRUNC() the pounds because you
formula returns

10 Stones 5.20000000000002 Pounds

for 66 Kg


"Chip Pearson" wrote in message
...
The following formula will return a string like "10 Stones 5 Pounds"
where cell A2 contains the weight in Kg.

=TRUNC(A2*2.2/14)&" Stones"&A2*2.2-(TRUNC(A2*2.2/14)*14)&" Pounds"


On Mon, 27 Oct 2008 15:44:01 -0700, Bristlepete
wrote:

Converting Kilograms to Stones is straight forward but is it possible to
take the part of the number after the decimal point and convert it to
pounds?



  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default convert kilograms to stones AND pounds

As one example, with the 10 to 14 correction, 69.8 kg gives 4 Stones 14 lbs,
which doesn't seem quite right? :-)
I guess that you are just converting from pounds to stones, rather than from
kg?
You did, however fall into the same 14lb trap that my earlier formula did,
which I've subsequently corrected by doing the rounding *before* the INT and
MOD [or INT and (x-INT(x))].

I think what Sandy was trying to suggest was that a division by 14 is exact
(subject to the precision of Excel's calculation, whereas your
mulitplication by 0.071429 is an approximation for the recurring number
0.07142857142857142857...).
--
David Biddulph

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Thanks Sandy

Typo on the 10

Not sure what you mean by the second part.

Gord


On Mon, 27 Oct 2008 23:55:12 -0000, "Sandy Mann"

wrote:

Gord,

=INT(A3*0.071429)&" Stones
"&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"


Should you not have multiplied by 14 instead of 10? (Unless of course
Canada has metric stones <g)

and would it not be better to divide by 14 then multiply by 0.071429?




  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default convert kilograms to stones AND pounds

"David Biddulph" <groups [at] biddulph.org.uk wrote in message

As one example, with the 10 to 14 correction, 69.8 kg gives 4 Stones
14 lbs, which doesn't seem quite right? :-)
I guess that you are just converting from pounds to stones, rather
than from kg?
You did, however fall into the same 14lb trap that my earlier formula
did, which I've subsequently corrected by doing the rounding *before*
the INT and MOD [or INT and (x-INT(x))].

I think what Sandy was trying to suggest was that a division by 14 is
exact (subject to the precision of Excel's calculation, whereas your
mulitplication by 0.071429 is an approximation for the recurring
number 0.07142857142857142857...).

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Thanks Sandy

Typo on the 10

Not sure what you mean by the second part.

Gord


On Mon, 27 Oct 2008 23:55:12 -0000, "Sandy Mann"

wrote:

Gord,

=INT(A3*0.071429)&" Stones
"&ROUND((A3*0.071429-INT(A3*0.071429))*10,0)&"
lbs"

Should you not have multiplied by 14 instead of 10? (Unless of
course Canada has metric stones <g)

and would it not be better to divide by 14 then multiply by
0.071429?


An interesting discussion but I wonder where in the world the
calculation is now needed? In any case, I remember that weights were
verbalized as, say, "10 stone 12" for a personal weight of 152 lb.

--
James Silverton
Potomac, Maryland

  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default convert kilograms to stones AND pounds

Yes, my formula converts from pounds to stones.

I used a formula I had cobbled together years ago.

Forgot what I was doing as usual.

Please disregard all my input to this thread.


Gord

On Tue, 28 Oct 2008 07:01:46 -0000, "David Biddulph" <groups [at]
biddulph.org.uk wrote:

As one example, with the 10 to 14 correction, 69.8 kg gives 4 Stones 14 lbs,
which doesn't seem quite right? :-)
I guess that you are just converting from pounds to stones, rather than from
kg?
You did, however fall into the same 14lb trap that my earlier formula did,
which I've subsequently corrected by doing the rounding *before* the INT and
MOD [or INT and (x-INT(x))].

I think what Sandy was trying to suggest was that a division by 14 is exact
(subject to the precision of Excel's calculation, whereas your
mulitplication by 0.071429 is an approximation for the recurring number
0.07142857142857142857...).


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I create a formula to convert kilograms to pounds Bob Excel Worksheet Functions 6 April 3rd 23 06:57 PM
How do I format cells to accept stones and pounds? Excelnewbie Excel Discussion (Misc queries) 2 March 27th 06 04:59 PM
how can I put weights in stones and pounds into an excel spreadshe SteveM Excel Discussion (Misc queries) 1 September 6th 05 09:32 AM
how can i use imperial units eg stones and pounds Rod C Excel Discussion (Misc queries) 2 February 16th 05 11:55 AM
I've got a formula for stones and pounds - how do I get an excel . mikelenno Charts and Charting in Excel 4 January 25th 05 08:45 PM


All times are GMT +1. The time now is 11:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"