Kilos

W

Walshy

Hi,

Is there a function or a quick way of coverting kilos into Stones and
pounds?

Thanks
 
A

Andy Wiggins

From the Help file:
=CONVERT(1.0, "lbm", "kg") Converts 1 pound mass to kilograms
(0.453592)

If this function is not available, and returns the #NAME? error, install and
load the Analysis ToolPak add-in.

So you need:
=CONVERT(1,"kg","lbm")

.... then divide by 14 to get stones
 
K

Kevin James

If the kilos are in cell A1, then this in cell B1

=TEXT(A1/0.453592/14,"00")&" Stone - "&TEXT(MOD(A1/0.453592,14),"00")&" lbs"

HTH
--
Kevin James.
Tua'r Goleuni


| Hi,
|
| Is there a function or a quick way of coverting kilos into Stones and
| pounds?
|
| Thanks
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top