How to Convert Lbs to Kg in Excel (3 Easy Methods)

We have a dataset of some Patient Names and their Weight in pounds.

Convert Lbs to Kg in Excel


Method 1 – Use the CONVERT Function to Convert Lbs to Kg in Excel

Steps:

  • Insert this formula in E5:
=CONVERT(D5,"lbm","kg")

Use CONVERT function to Convert Lbs to Kg in Excel

  • Press Enter and drag down the fill handle to get the output in all cells.

  • Here’s the result.

Use CONVERT function to Convert Lbs to Kg in Excel

Read More: How to Convert Kg to Lbs in Excel


Method 2 – Divide or Multiply with a Factor to Convert Lbs to Kg in Excel

Steps:

  • Insert this formula in E5:
=D5/2.205

Divide or Multiply with a Factor to Convert Lbs to Kg in Excel

  • Hit Enter.
  • Pull the fill handle down to fill the series.

  • We will get our conversion values in all the cells in a different column.

Divide or Multiply with a Factor to Convert Lbs to Kg in Excel

You can also multiply the pound (lb) units by 0.45359237 to get your desired kilogram (kg) unit:

Steps:

  • Insert this formula in E5:
=D5*0.45359237

Divide or Multiply with a Factor to Convert Lbs to Kg in Excel

  • Press the Enter button to get the result.
  • Drag down the fill handle to fill all the cells from the column.

  • Here’s the result.

Divide or Multiply with a Factor to Convert Lbs to Kg in Excel

Read More: Converting CM to Inches in Excel


Method 3 – Run a VBA Code to Convert Lbs to Kg in Excel

Steps:

  • Open the Microsoft Visual Basic for Applications window by pressing Alt + F11.

Utilize VBA Code to Convert Lbs to Kg in Excel

  • Click on Module from the Insert section.

  • Apply the following code int the module:
Sub LbstokgConverter()
Dim Lbstokg As Long
Lbstokg = InputBox("How much weight in pounds(lbs)?")
MsgBox "Weight is=" & Lbstokg * 0.45359237 & "kg."
End Sub
  • Press Run.

Utilize VBA Code to Convert Lbs to Kg in Excel

  • An input box will appear asking for the pound (lbs) value.
  • Insert the value you want.
  • Click OK.

Utilize VBA Code to Convert Lbs to Kg in Excel

  • A message box will show the converted value.

Read More: How to Convert MM to CM in Excel


Download the Practice Workbook


Related Articles


<< Go Back to Excel CONVERT Function | Excel Functions | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Wasim Akram
Wasim Akram

Wasim Akram holds a BSc degree in Industrial and Production Engineering from Ahsanullah University of Science and Technology. Over the past 2 years, he has been actively contributing to the ExcelDemy project, where he has authored more than 150 articles. Now, he is working as an Excel VBA and Content Developer. He likes learning new things about Microsoft Office, especially Excel VBA, Power Query, Data Analysis, and Excel Statistics. He is also very interested in machine learning and... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo