Convert Latitude Longitude in Excel

rodwilma

New Member
Joined
Nov 12, 2012
Messages
11
I have a spreadsheet with the following degrees,minute,seconds coordinates but I need to convert these to decimal degrees (all in the State of Florida). There are not dashes or periods in the format as seen below. Anyone know how?
Latitude DMSLongitude DMS
28 25 18-81 28 28
28 25 15-81 27 35
28 25 15-81 27 35
28 25 16-81 26 33

<colgroup><col style="width: 82pt; mso-width-source: userset; mso-width-alt: 3986;" width="109"> <col style="width: 88pt; mso-width-source: userset; mso-width-alt: 4278;" width="117"> <tbody>
</tbody>

Input is greatly appreciated.

Thanks!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Try: =SUM(LEFT(A3,2),MID(A3,4,2)/60,RIGHT(A3,2)/3600)

Sorry, I did not notice your comment on the formatting, try: =SUM(LEFT(A3,2),MID(A3,3,2)/60,RIGHT(A3,2)/3600)
 
Last edited:
Upvote 0
Thank you West Man!

It works on the latitude but something is off on the longitude. I placed the converted points on a map and they wind up in the ocean.
 
Upvote 0
For longitude try: =SUM(LEFT(B3,3),-MID(B3,5,2)/60,-RIGHT(B3,2)/3600)

Shoudn't this be =SUM(LEFT(B3,3),-MID(B3,4,2)/60,-RIGHT(B3,2)/3600)[/QUOTE]

Also, can this be done in reverse. Take this and convert it to degrees, minutes, and seconds?
 
Last edited:
Upvote 0
I took the first DMS lat/long listed above and placed these points in itouchmap.com. Itouchmap provided me with the decimal degrees which when using West Man's formulas matched exactly.
 
Upvote 0

Forum statistics

Threads
1,216,175
Messages
6,129,309
Members
449,499
Latest member
HockeyBoi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top