View Single Post
  #1   Report Post  
P Boric
 
Posts: n/a
Default Converting numbers

What does "B6" mean in the formula after INT? Is a cell refrence?

"tamir" wrote:

To convert decimal degree (DD) to degree-minute-second (DMS) format:
DMS = TRUNC(DD)&"d " &TRUNC((DD-TRUNC(DD))*60)&"m"


&INT(((B6-TRUNC(DD))*60-(TRUNC((DD-TRUNC(DD))*60)))*60*10)/10&"s","")

which will yield DMS = 12d 7m 24.4s when DD=12.12345

a.. "Tom" wrote in message
...
Does anyone know how to convert in Excel a decimal angle
(ie 35.593056) to degrees/minutes/seconds (ie 35
minutes,35 degrees,35 seconds). Thanks for any help.