Hi All,
I need to convert from feet and inches (5' 4") to inches only in smartsheet. I have tried using
=LEFT(Width3,FIND("'",Width3)-1)*12+SUBSTITUTE(MID(Width3,FIND("'",Width3)+1,LEN(Width3)),"""","")
=LEFT(Width3, FIND("'",Width3)-1)*12 + MID(Width3,FIND("'",Width3)+1,LEN(Width3)-FIND("'",Width3)-1)
=IF(ISBLANK(Width3), " ",IFERROR(IFERROR(CONVERT(LEFT(Width3,FIND("'",Width3)-1),"ft","in"),0)+IFERROR(SUBSTITUTE(RIGHT(Width3,LEN(Width3)-IFERROR(FIND("'",Width3),0)),"""","")+0,0),Width3))
Any thoughts on how to make this work in smart sheet would be greatly appreciated. I don't know what else to try.
Thanks,
-Jen