Ted87
Structural
- May 19, 2015
- 6
Hi folks,
I was wondering how do i convert 5'-9" to 5.75 ft in excel. Any help is appreciated.
Ted.
I was wondering how do i convert 5'-9" to 5.75 ft in excel. Any help is appreciated.
Ted.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
=CONCATENATE(INT(B42),"'-",((B42-INT(B42))*12),"""")
Function ff2fi(x As String) As String
Dim c
c = Split(x, ".")
feet = c(0)
inches = c(1) / 100 * 12
ff2fi = feet & "'- " & inches & """"
End Function
=LEFT(D46,FIND("'",D46)-1)+LEFT(RIGHT(D46,LEN(D46)-FIND("-",D46)),LEN(D46)-FIND("-",D46)-1)/12
Function fi2ff(x As String) as Single
Dim d
d = Split(x, "-")
feet = (Left(d(0), Len(d(0)) - 1))
decft = (Left(d(1), Len(d(1)) - 1)) / 12
fi2ff = feet + decft
End Function