I used the formula below, given elsewhere on this site to convert kilos into
Stones & Pounds.
=INT(CONVERT(F6,"kg","lbm")/14)&"st "&MOD(CONVERT(F6,"kg","lbm")/14,1)
*14&"lb" When I converted 98 kilos I got the following result 15st 6.
05304563975091lb. Could someone advise how I can amend the formula to round
up or down the decimals so that the result would show 15st 6lb.
MH - 06 Jan 2007 19:57 GMT
=INT(F6*2.2/14)&"st "&ROUND(MOD(F6*2.2,14),0)&"lb"
MH
>I used the formula below, given elsewhere on this site to convert kilos
>into
[quoted text clipped - 5 lines]
> round
> up or down the decimals so that the result would show 15st 6lb.
ChrisSwatton - 07 Jan 2007 13:19 GMT
Thanks for your help
>=INT(F6*2.2/14)&"st "&ROUND(MOD(F6*2.2,14),0)&"lb"
>
[quoted text clipped - 5 lines]
>> round
>> up or down the decimals so that the result would show 15st 6lb.
RagDyeR - 06 Jan 2007 19:59 GMT
Try this:
=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"

Signature
HTH,
RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================
I used the formula below, given elsewhere on this site to convert kilos into
Stones & Pounds.
=INT(CONVERT(F6,"kg","lbm")/14)&"st "&MOD(CONVERT(F6,"kg","lbm")/14,1)
*14&"lb" When I converted 98 kilos I got the following result 15st 6.
05304563975091lb. Could someone advise how I can amend the formula to round
up or down the decimals so that the result would show 15st 6lb.
ChrisSwatton - 07 Jan 2007 13:19 GMT
Thank you for your help
>Try this:
>
[quoted text clipped - 8 lines]
>05304563975091lb. Could someone advise how I can amend the formula to round
>up or down the decimals so that the result would show 15st 6lb.
Bob Phillips - 06 Jan 2007 20:00 GMT
=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"

Signature
---
HTH
Bob
(change the xxxx to gmail if mailing direct)
>I used the formula below, given elsewhere on this site to convert kilos
>into
[quoted text clipped - 5 lines]
> round
> up or down the decimals so that the result would show 15st 6lb.
ChrisSwatton - 07 Jan 2007 13:21 GMT
All the above works great. Thanks top everyone for thier assistance.
>=INT(CONVERT(F6,"kg","lbm")/14)&"st
>"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"
[quoted text clipped - 4 lines]
>> round
>> up or down the decimals so that the result would show 15st 6lb.