Formula for converting feet and fraction of inches to meters

jvwm

New Member
Joined
Aug 23, 2023
Messages
4
Office Version
  1. 2021
Platform
  1. Windows
  2. Web
What is the formula in calculating meter from feet and fraction of inches??
 

Attachments

  • Capture.PNG
    Capture.PNG
    18.5 KB · Views: 13

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Elsewise, supposing your HEIGHT(ft-in) is in cell G3 (and looks like text) then use this formula in H3:
=ROUND((LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")))/39.701,2)
or even:
=ROUND(CONVERT(LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")),"in","m"),2)
 
Last edited:
Upvote 0
Sorry, typo in the first formula:
it should be 39.3701
 
Upvote 0
Elsewise, supposing your HEIGHT(ft-in) is in cell G3 (and looks like text) then use this formula in H3:
=ROUND((LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")))/39.701,2)
or even:
=ROUND(CONVERT(LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")),"in","m"),2)
1692859869567.png
Am I doing right? but still it's error? but correct me if im wrong
 
Upvote 0
Elsewise, supposing your HEIGHT(ft-in) is in cell G3 (and looks like text) then use this formula in H3:
=ROUND((LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")))/39.701,2)
or even:
=ROUND(CONVERT(LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")),"in","m"),2)
=ROUND(CONVERT(LEFT(G3,FIND("'",G3)-1)*12+ABS(SUBSTITUTE(MID(G3,FIND("'",G3)+1,LEN(G3)),"""","")),"in","m"),2) WOW!!! HEHE thank you this formula works!! i have tried different formula just to solve this! gosh thank you !
 
Upvote 0
Even the first does work, you forgot to copy the last ,2 :cry:.
Anyway, thanks for the positive feedback(y), glad having been of some help.
 
Upvote 0

Forum statistics

Threads
1,215,233
Messages
6,123,771
Members
449,122
Latest member
sampak88

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