Kilos to Stones & Pounds

C

Chris Swatton

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.
 
R

RagDyeR

Try this:

=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"

--

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.
 
B

Bob Phillips

=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
 
C

ChrisSwatton via OfficeKB.com

Thank you for your help
Try this:

=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"

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.
 
C

ChrisSwatton via OfficeKB.com

All the above works great. Thanks top everyone for thier assistance.

Bob said:
=INT(CONVERT(F6,"kg","lbm")/14)&"st
"&ROUND(MOD(CONVERT(F6,"kg","lbm")/14,1)*14,0)&"lb"
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.
 

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