Hi Gcastilleja,
To return the number of feet and inches (in decimal, e.g. 100.25) try this formula in C1:
=(B1*VALUE(LEFT(A1,FIND("'",A1)-1)))+(B1/12*VALUE(MID(A1,FIND("'",A1)+1,FIND("""",A1)-(FIND("'",A1)+1))))
If you want to return it to x' yy" again, without using helper columns, this should work:
=INT((B1*VALUE(LEFT(A1,FIND("'",A1)-1)))+(B1/12*VALUE(MID(A1,FIND("'",A1)+1,FIND("""",A1)-(FIND("'",A1)+1)))))&"' "&ROUND(((B1*VALUE(LEFT(A1,FIND("'",A1)-1)))+(B1/12*VALUE(MID(A1,FIND("'",A1)+1,FIND("""",A1)-(FIND("'",A1)+1))))-INT((B1*VALUE(LEFT(A1,FIND("'",A1)-1)))+(B1/12*VALUE(MID(A1,FIND("'",A1)+1,FIND("""",A1)-(FIND("'",A1)+1))))))*12,0)&""""
I'm sure there's neater formulas out there, but it's what my little brain came up with. VBA could also be used, and I'm pretty sure I've seen examples of doing this somewhere..
Hope that helps!
Bookmarks