Transfer Lbs into Kg.

serge

Well-known Member
Joined
Oct 8, 2008
Messages
1,446
Office Version
  1. 2007
Platform
  1. Windows
I'm looking for a formula that would transfer a number of Pounds ( Lb ) into Kilograms ( Kg ).

I have in F10: 253.6 Lbs and I would like in G10 in Kg.

What I did in G10 is this : =F10*45359237/1000

1 Lb is equal to : 453gr but to be more precise I did put the exact number gr. : 45359237.

and that give me : 11503103 but I would like the grams to be separate from the Kilo by a period ( . ) and only 2 digits after the period.

So the formula should give me this as result : 115.03 Kg

Thank you all for any help.
Serge.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
In G10 try

=CONVERT(F10, "lbm", "kg")
 
Upvote 0
Serge,

Why not try a user defined function. Such as the following:

PHP:
Public Function PoundsToKilograms(Pounds As Double) As Double
    PoundsToKilograms = Round(Pounds * 0.45359237, 2)
End Function

If your are not familar withh vba, reply back

Best,

Trebormac
 
Upvote 0
Dave,

I have 2 columns F in Lb and G in Kg.
I need to keep F the way it is I just need this G10 to do the conversion.

Thanks for the reply.
 
Upvote 0
Thanks Trebormac,

No I'm not familiar at all with VBA, that why I'm asking for a formula which is easier for me.

Thank you.
 
Upvote 0
Hi,
In G10 put this formula = F10*453.59237/1000 and format F10 cell to two decimal points
bbr
 
Upvote 0
My bad, I miss understood, Thank you all for the help.
I really appreciate it.

Serge.
 
Upvote 0
Dave,

How do I stop at 2 digits after the period with your formula ? yours give me 3 digits after the period !
 
Upvote 0

Forum statistics

Threads
1,224,541
Messages
6,179,418
Members
452,912
Latest member
alicemil

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top