use that value to convert, e.g.:
=B5/10.76391 (where B5 is sq ft)
or
=B5*10.76391 (where B5 is sq m)
Sq Ft ---> Sq M ---> multiply by 0.0929
Sq M ---> Sq Ft ---> multiply by 10.76
>.
>
>.
>
Another approach if you have the analysis toolpak installed
Sq Ft --> Sq M =convert(SQRT(A1),"ft","m")^2
Sq M --> Sq Ft ==convert(SQRT(A1),"m","ft")^2
--ron
=A1*convert(1,"ft","m")^2
--
Dana DeLouis Windows Me & Office XP
"Ron Rosenfeld" <ronros...@spamcop.net> wrote in message
news:0p2eutcbb2pp7s9to...@4ax.com...
>A slightly different idea could remove the Sqrt function....
>
> =A1*convert(1,"ft","m")^2
Would probably compute more quickly, too.
--ron