feet and inches to meters

  • Thread starter Thread starter scott
  • Start date Start date
S

scott

what formula will allow me to convert feet and inches to meters. current
format of cell is 5’05.00â€
 
Hi Scott,

Assuming the actual number is 505 and it's just a custom format you're using to display it as 5’05.00â€, you could use a formula
like:
=(INT(A1/100)*12+MOD(A1,100))*0.0254
 
thank you very much
--
Thanks in advance


David Biddulph said:
=CONVERT(LEFT(A1,FIND("'",A1)-1)*12+MID(A1,FIND("'",A1)+1,LEN(A1)-FIND("'",A1)-1),"in","m")
--
David Biddulph





.
 
Back
Top