Degrees, Minutes and Seconds

Y

Yosof Ewing

Hey Guys

Does anybody know how to convert an angle in degrees into
degrees, minutes and seconds? ( o ' " ).

Yosof
 
R

Ron Rosenfeld

Hey Guys

Does anybody know how to convert an angle in degrees into
degrees, minutes and seconds? ( o ' " ).

Yosof

Well, you can't display it that way as other than a text string. If that's OK,
then with the angle in degrees in B1:


=TEXT(INT(B1),"0\° ")&
TEXT(INT(MOD(B1,1)*60),"0\' ")&
TEXT(MOD(MOD(B1,1)*60,1)*60,"00.0\""")


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top