Showing an angle in cells

D

Dinko Krmpotic

Is there any possibility to show and calculate an angle in a cell in dms
format (##°##'##'')?
 
J

JWolf

=CONCATENATE(INT(A1),"°",INT(MOD(A1,1)*60),"'",INT(MOD(MOD(A1,1)*60,1)*60),"""")
 
Top