How to Convert a Number to Degrees Minutes Seconds (DMS) Format in Excel

Learn the simple Excel formula to convert decimal numbers into degrees, minutes, and seconds format quickly and accurately.

235 views

To convert a number to degrees, minutes, seconds in Excel, use the following formula: `=TEXT(A1,"0° ") & TEXT((A1-TRUNC(A1))60,"0' ") & TEXT(((A1-TRUNC(A1))60-TRUNC((A1-TRUNC(A1))60))60,"0""""")`. Replace `A1` with your cell containing the decimal degree value. This splits the decimal number into degrees, minutes, and seconds, formatting each component for easy reading.

FAQs & Answers

  1. What is the formula to convert decimal degrees to degrees minutes seconds in Excel? You can use the formula =TEXT(A1,"0° ") & TEXT((A1-TRUNC(A1))*60,"0' ") & TEXT(((A1-TRUNC(A1))*60-TRUNC((A1-TRUNC(A1))*60))*60,"0""""") to convert a decimal degree value in cell A1 into degrees, minutes, and seconds format.
  2. Can Excel convert decimal degrees to DMS format automatically? Excel does not have a built-in automatic conversion for decimal degrees to DMS, but you can use formulas like the one above to format the numbers into degrees, minutes, and seconds.
  3. How do I display degrees, minutes, and seconds symbols in Excel formulas? You use special characters in the TEXT function, such as ° for degrees, ' for minutes, and " for seconds, ensuring they are enclosed in quotation marks within the formula.