![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Feb 2002
Posts: 27
|
I have 2 cells. D2 is where I will enter the pounds in. I want D1 to change the pounds into Kilograms. How do I do this?
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Millbank, London, UK
Posts: 1,790
|
there's 2.204623 pounds in a kilo, so in cell D1 just enter =D2/2.204623
if you want to show "kgs" after the number also, try =TEXT((D2/2.204623),"#,###.000")&" kgs" where the amount of 0s are however many decimals you want
__________________
:: Pharma Z - Family drugstore :: |
|
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Millbank, London, UK
Posts: 1,790
|
oooops, I see this has already been answered earlier - can this entry be deleted ?
|
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Justine, you could also employ the CONVERT function which is made available with the installation of the Analysis ToolPak...
=CONVERT(D2,"lbm","kg") If you'll consult the Help topic for CONVERT you'll see it's quite useful when you don't know the conversion factors or want greater precision than you can recall. |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|