W Walshy Oct 7, 2006 #1 Hi, Is there a function or a quick way of coverting kilos into Stones and pounds? Thanks
A Andy Wiggins Oct 7, 2006 #2 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
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 Oct 7, 2006 #3 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 | | |
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 | | |