Meters to Feet and Inches

Coachcasa

New Member
Joined
Feb 1, 2021
Messages
34
Office Version
  1. 2016
Platform
  1. MacOS
Hi everyone. I am a high school track coach in the U.S. and we are now going to start measuring our field events in metric rather than imperial. Since both myself and my coaching staff are so used to imperial, metric measurements don't mean a whole lot to us until we get used to them. So I'm creating a spreadsheet for my staff for quick reference. In column A I have meters and in column B I want to it to show the distance in feet and inches and I'd like the format to look like: 15' 7 ½". I want to round down to the nearest ½". Is there a way to do this? I can convert the meters to feet using the CONVERT formula, but then I get a decimal. I'm looking to do this:

MetersFeet
13' 3"
1.053' 5 ½"
1.103' 7"

I don't know if this is possible. Thanks for your help.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Isn't 1.05 rounded down to the nearest 1/2 = only 3 feet 5 inches?

Dropdown_FJPunisher.xlsm
AB
1MetersFeet/Inches
21.003' 3"
31.053' 5"
41.103' 7"
51.785' 10"
Sheet6
Cell Formulas
RangeFormula
B2:B5B2=INT(CONVERT(A2,"m","ft"))&"' "&TEXT(ROUNDDOWN(12*(CONVERT(A2,"m","ft")-INT(CONVERT(A2,"m","ft"))),0.5),"0")&""""
 
Upvote 0
Cell Formulas
RangeFormula
B2:B27B2=INT(CONVERT(A2,"m","ft"))&"' "&TEXT(12*(CONVERT(A2,"m","ft")-INT(CONVERT(A2,"m","ft"))),"0 #/2")&""""
A3:A27A3=A2+0.05
 
Upvote 0
Hi,

My version, final formula in F2
C, D, & E columns is just showing the various stages of the conversion, seems accuracy is within 1/2 ( 0.5 ) inch:

Cell Formulas
RangeFormula
C2:C9C2=CONVERT(A2,"m","ft")
D2:D9D2=INT(CONVERT(A2,"m","ft"))&"' "&MOD(CONVERT(A2,"m","ft"),1)*12&""""
E2:E9E2=INT(CONVERT(A2,"m","ft"))&"' "&ROUND(MOD(CONVERT(A2,"m","ft"),1)*12,2)&""""
F2:F9F2=INT(CONVERT(A2,"m","ft"))&"' "&TEXT(MOD(CONVERT(A2,"m","ft"),1)*12,"#-#/2")&""""
 
Upvote 0
Solution
Hi,

My version, final formula in F2
C, D, & E columns is just showing the various stages of the conversion, seems accuracy is within 1/2 ( 0.5 ) inch:

Cell Formulas
RangeFormula
C2:C9C2=CONVERT(A2,"m","ft")
D2:D9D2=INT(CONVERT(A2,"m","ft"))&"' "&MOD(CONVERT(A2,"m","ft"),1)*12&""""
E2:E9E2=INT(CONVERT(A2,"m","ft"))&"' "&ROUND(MOD(CONVERT(A2,"m","ft"),1)*12,2)&""""
F2:F9F2=INT(CONVERT(A2,"m","ft"))&"' "&TEXT(MOD(CONVERT(A2,"m","ft"),1)*12,"#-#/2")&""""
Maybe throw a TRIM in there as well?
 
Upvote 0
Thanks kweaver, Edited with a fix, no need for TRIM.
 
Upvote 0
You're welcome, thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,040
Members
449,063
Latest member
ak94

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