For a decimal degree value in A16, try:
=INT(A16)&CHAR(176)&(INT((A16-INT(A16))*60)&"'")&FIXED
((A16-INT(A16))*3600-(INT((A16-INT(A16))*3600/60))*60,2)
&""""
The FIXED function rounds the seconds to 2 decimal places
(the final "2" in the long expression). Adjust the "2" to
what ever number of decimals you want in the seconds
portion.
Thanks for that, can you also help with "inverse tan". What i am trying to do
is return the value of opposite over adjacent as a whole circle bearing but I
am a wee bit lost?