How to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

Calculation for Converting Degrees Decimal Minutes to Decimal Degrees

60 minutes is equal to one degree:

1° = 60′

1/60 degrees equals one minute:

1′ = (1/60)°

In standard notation, we use integer values up to the smallest value, so when switching from degree-minutes to degrees, the degrees turn from integer to decimal.

Let’s see the calculation to convert 20 degrees and 16 minutes to decimal degrees.

20° 16′

= 20° + 16’/60

= 20.27°


Convert Degrees Decimal Minutes to Decimal Degrees in Excel: 2 Methods

We’ll use the following dataset which contains some degrees decimal minutes (DDM) in column B. We will see the conversion in a different column named Decimal Degrees (DD).

2 Methods to Convert Degrees Decimal Minutes to Decimal Degrees in Excel


Method 1 – Apply a Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

To use formulas, we must remove the degree and minutes symbols.

2 Methods to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

STEPS:

  • Select B5 and go into the formula bar.
  • Copy the degree symbol ‘°’.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Select the range B5:B10.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Go to the Data tab from the ribbon.
  • Click on the Text to Columns command under the Data Tools group.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • You’ll get the Convert Text to Columns Wizard.
  • Choose the file type Delimited.
  • Click on Next.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Checkmark the box Other under Delimiters.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Paste the copied degree symbol ‘°’ to the box for Other.
  • Click on Next.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Select General in the Column data format selection menu.
  • Click on the Finish button.

  • You’ll get a confirmation box.
  • Click on the OK button.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • You can see the degrees and minutes are separated and the symbol of the degrees is removed.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Choose any of the minute cells. We chose cell B5. You may also see the value in the formula bar by selecting the cell.
  • Copy the ‘’ sign for minutes.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Choose the C5:C10 range.
  • Select the Data tab.
  • Select the Text to Columns command.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • The Convert Text to Columns Wizard will display.
  • Select Delimited as the file type.
  • Click on the Next button.

  • Under Delimiters, tick the box Other.
  • Place the copied minutes symbol ‘’ in the box next to Other.
  • Click Next.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • In the Column data format options menu, pick General.
  • Hit the Finish button.

1. Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • The degrees and minutes have been split, and the symbols have been eliminated.

  • Select the first cell where you want to see the conversion. We selected cell E5.
  • Insert the following:

=B5+C5/60 

Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • If you click on the resulting cell, the formula will show in the formula bar.

B5 is the degree and C5 is the minutes. We are using the formula Decimal degrees = Degrees + (Minutes/60).

Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • Drag the Fill Handle over the range E6:E10. 

Apply Simple Formula to Convert Degrees Decimal Minutes to Decimal Degrees in Excel

  • The degrees decimal minutes are converted to decimal degrees.


Method 2 – Excel User-Defined Function to Transpose Degrees Decimal Minutes to Decimal Degrees

We are now creating a user-defined function using the Excel VBA to convert the degrees decimal minutes to decimal degrees. We can use that function as if it were a stock function in Excel.

Excel User-Defined Function to Transpose Degrees Decimal Minutes to Decimal Degrees

STEPS:

  • Go to the Developer tab from the ribbon.
  • Click on Visual Basic to open the Visual Basic Editor. Another way to open the Visual Basic Editor is to press Alt + F11.

Excel User-Defined Function to Transpose Degrees Decimal Minutes to Decimal Degrees

  • Alternatively, right-click on the sheet name, then select View Code.

  • Go to Insert and select Module from the drop-down menu.

Excel User-Defined Function to Transpose Degrees Decimal Minutes to Decimal Degrees

  • Copy and paste the VBA code below.

VBA Code:

Function Decimal_Degrees(Degree_d As String) As Double
    Dim degrees As Double
    Dim minutes As Double
    Degree_d = Replace(Degree_d, "~", "°")
    degrees = CDbl(Left(Degree_d, InStr(1, Degree_d, "°") - 1))
    minutes = CDbl(Mid(Degree_d, InStr(1, Degree_d, "°") + 1, _
    InStr(1, Degree_d, "'") - InStr(1, Degree_d, "°") - 1)) / 60
    Decimal_Degrees = degrees + minutes
End Function
  • Save the code by pressing Ctrl + S.

  • This will create a function named Decimal_Degrees.
  • Go back to the workbook and select the cell where we want the converted result to appear. We selected cell E5.
  • You can see a function is added to our spreadsheet.

  • Use the formula we created:
=Decimal_Degrees(B5)
  • Press Enter.

Excel User-Defined Function to Transpose Degrees Decimal Minutes to Decimal Degrees

  • Drag the Fill Handle down to copy the formula.

  • Here’s the result.


Download the Practice Workbook


<< Go Back to Geocoding in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Sabrina Ayon
Sabrina Ayon

Sabrina Ayon, a Computer Science and Engineering graduate from United International University, has been an integral part of the ExcelDemy project for two years. She authored 150+ articles, excelling in instructing through visually engaging Excel tutorials. With a passion for teaching, Sabrina conducted sessions on Excel VBA, sharing her knowledge and insights with others. Currently holding the position of Project Manager for the ExcelDemy Visual Development Project, she oversees various aspects of the project, ensuring its smooth operation... Read Full Bio

2 Comments
  1. Thank you so much for this.

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo