I am trying to convert a number or part of a number to repersent feet. I know the formunla 1.25' = 1'-4" but I want to entry 1.25 and the cell display 1'-4" so I can complete the formunla.
Thank You
A slight refinement of DaveViking's method would be to use
=CONCATENATE(INT(F5),"' - ",12*(F5-INT(F5)),"''"
which only uses one extra cell, and it's still a text string.