Forum Discussion
formula to convert degree minutes to degree decimals
The formulas you are currently using to convert degree minutes to degree decimals in Excel seem correct. However, if you are experiencing inconsistencies with the coordinate points on your map, there could be other factors at play, such as data formatting or rounding errors.
Here are the formulas you provided for reference:
Latitude formula in cell N2:
=IF(OR(RIGHT(L2,1)="S",RIGHT(L2,1)="s"),-1,IF(OR(RIGHT(L2,1)="N",RIGHT(L2,1)="n"),1, ""))*(VALUE(LEFT(L2,FIND("-",L2)-1))+(VALUE(MID(L2,FIND("-",L2)+1,LEN(L2)-FIND("-",L2)-1))/60))
Longitude formula in cell O2:
=IF(RIGHT(M2,1)="W",-1,1)*(VALUE(LEFT(M2,FIND("-",M2)-1))+(VALUE(MID(M2,FIND("-",M2)+1, LEN(M2)-FIND("-",M2)-1))/60))
If you want to check for any potential issues, you can consider the following:
- Ensure that the data in columns L and M (containing the degree minutes) is formatted correctly as text or general.
- Check for any leading or trailing spaces in the degree minute values that might affect the calculations.
- Make sure the degree minute values are entered consistently and follow the correct format (e.g., "35-30" for 35 degrees 30 minutes).
- Verify that the resulting decimal values are rounded to the appropriate number of decimal places for your map's accuracy requirements.