A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I don't know how .25 should give 4", or how .47 should give 1/2", but if you have those numbers in column A, starting with A1, then you could put this formula in B1:
=INT(A1)&"'"&TEXT(MOD(A1,1)*12,"0")&CHAR(34)
and copy it down. These are the results that I got:
| 33.25 | 33'3" | |
|---|---|---|
| 12.47 | 12'6" |
Hope this helps.
Pete