Convert date to height

haminh

New Member
Joined
Jun 27, 2007
Messages
13
Dear everyone,

Could you please help me to convert date to height?
Date format 6/2/2000, I would like to convert it to a new cell which shows as "6'2"(or as "6.2 ft")
Date Format 5/6/2006 will show as "6.5 ft"

Thank you all so much

Cheers,
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try this but beware.

If A1 contains the date 6/2/2000, the following returns 6'2.
Code:
=MONTH(A1) & "'" & DAY(A1)

And, the following returns 6.2 ft.

Code:
=MONTH(A1) & "." & DAY(A1) & " ft"

It should be noted that six feet, two inches is NOT equal to 6.2 ft.
 
Upvote 0
Dear everyone,

Could you please help me to convert date to height?
Date format 6/2/2000, I would like to convert it to a new cell which shows as "6'2"(or as "6.2 ft")
Date Format 5/6/2006 will show as "6.5 ft"

Thank you all so much

Cheers,

=MONTH(A1)&"'"&DAY(A1)
 
Upvote 0
Thanks for your replying. I got a project which requires me to go http://web1.ncaa.org/stats/StatsSrv/careerteam to get the data. When copy and paste it to the Excel, it appears as date. Could you show me how to get back to the height?

It might be easier to get it cleanly into Excel, rather than converting it once it gets there.

Copy from the site and paste it into MS Word.

Go to the menu, select Table, Convert, Table to Text, and tab delimit.

Save the Word document as a text file.

Open the text file with Excel, which will allow you to assign a Text format to the height column.
 
Upvote 0

Forum statistics

Threads
1,215,183
Messages
6,123,529
Members
449,105
Latest member
syed902

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