With a bit of maths (to follow) you can get the following:

Longitude

=ATAN(F2/E2)

where E2 and F2 are X and Y

Latitude

=ACOS(SQRT(E2^2+F2^2)/6371)

So below I have started with the latitude and longitude of a famous northern city, converted them to X and Y coordinates, then converted them back into latitude and longitude. Because of the square root, there is actually a mirror image in the southern hemisphere.

The original equations can be written as:

X=R cos(lat) cos(long) ...(1)

Y=R cos(lat) sin(long) ...(2)

where R is the radius of the Earth in miles.

Dividing (2) by (1) gives

Y/X = tan (long)

or

long = atan(Y/X) ....(3)

Substituting (3) into (1) gives

X = R cos(lat) cos(arctan(Y/X))

but

cos(arctan(Y/X)) => X/sqrt(X^2 + Y^2) 

(by considering a right-angled triangle with shorter sides X and Y)

so

X=R cos(lat) X / sqrt(X^2+Y^2)

cos(lat) = sqrt(X^2+Y^2) / X

lat = acos(sqrt(x^2+Y^2)/X) ....(4)

Equations (3) and (4) are used to determine the latitude and longitude from X and Y.

Answer from Tom Sharpe on Stack Overflow
Discussions

Converter for latitude/longitude feature in excel
Looking to find the start position and end position by town/city for conversion of the begin latitude/longitude and the end latitude and longitude in excel. What is the third party application that can help me to convert the lat and long using excel… More on learn.microsoft.com
🌐 learn.microsoft.com
1
53
June 28, 2020
Convert string of numbers to Lat Long in Excel
Is the data supposed to be somewhere in Denver? The table is in decimal lat/long and the first row is actually 39.791044, -105.158611. I’d just fix that in excel using find/concat formulas. More on reddit.com
🌐 r/gis
24
14
November 13, 2024
How to upload Coordinates from Excel to QGIS
You dont need to convert anything in Excel! You just have to know in which CRS your coordinates are...like in your Case UTM 51 North Layer > Add Layer > delimited Text Choose FileChoose the fields where the coordinates are (X and Y) Set the CRS (WGS 84 / UTM 51N) Done! QGIS will project the points on their right place! The "Project CRS" (Your first screenshot) doesnt alter the coordinates. It just show the corresponding coordinates in that CRS. You can put there whatever you want... If they are not where they belong...you either choose the wrong CRS or the coordinates are wrong. More on reddit.com
🌐 r/QGIS
10
4
November 14, 2023
Excel formula for converting from decimal to degree, minute, second.
What do you mean with "into GPS coordinates"? Your data pretty much looks like GPS coordinates, in decimal degrees (which Google Maps should understand, too.) If you want to convert them into degrees, minutes and seconds, you can use something like that: For Latitude: =TEXT(ABS([@[lat_dec]])/24,"[h]\°mm'ss\""")&IF([@[lat_dec]]>0,"N","S") (replace [@[lat_dec]] with a reference to your latitude in decimal) For Longitude: =TEXT(ABS([@[lon_dec]])/24,"[h]\°mm'ss\""")&IF([@[lon_dec]]>0,"E","W") (replace [@[lon_dec]] with a reference to your longitude in decimal) More on reddit.com
🌐 r/excel
4
2
July 12, 2023
🌐
Reddit
reddit.com › r/gis › convert string of numbers to lat long in excel
r/gis on Reddit: Convert string of numbers to Lat Long in Excel
November 13, 2024 -

Hi all!

I received a spreadsheet of attributes from which I need to create points. This is something I do a lot, but in the table I received from an outside source the Lat Long are just listed in a string of numbers and I don't know how to convert them to something the software will recognize. Or maybe that's not my problem at all and I need to find a different projection - but I don't think so.

The first time I tried this, it did seem that I used the wrong projection. The points did plot. I zoomed to layer and they were off the edge of the globe somewhere, but I could see them. So I tried again w/different projections, some standard ones.

Now, I Created Points from Table and the layer shows up in my catalogue/ Drawing Order, but nothing displays in my map. When I zoom to layer, the detail area doesn't change at all. I stay in the same place, but nothing displays. It doesn't matter where I am in the map. I've maneuvered around the geography a bit, and every time I stop somewhere and Zoom to Layer of these points, nothing happens. I stay wherever I was, as if that's where the layer should display, but nothing displays. Does that make sense?

So I think that part of my problem is that my Lat Long entries are not in a useable format. The top entry, for example, needs to be something like 39 79'10.44 and -105 15'86.11. Doesn't it? I thought maybe the software would know how to convert those, but it doesn't seem like it. And I'm not sure how to create a formula that will re-format those values in a new column in Excel so I can import it into Pro, or how to convert the values in ArcPro.

Does anyone know the answer? Thanks, all!!

🌐
YouTube
youtube.com › watch
How to Convert Coordinates to Lat Long in Excel | Amazing Excel Sheet Convert Coordinates - YouTube
Convert Coordinates to Lat-Long in Excel | English | Amazing Excel SheetHow to Convert Coordinates to Lat Long in Excel | Amazing Excel Sheet Convert Coordi...
Published   September 22, 2019
🌐
Mygeodata
help.mygeodata.cloud › home › conversion of xy or lat/lon tabular data to gis formats using csv or excel
Conversion of XY or LAT/LON tabular data to GIS formats using CSV or Excel - MyGeodata Knowledge Base
December 20, 2024 - Coordinates using the geographic coordinate system (latitude and longitude) must be formatted as decimal numbers (eg. -72.9766666667, 42.4463888889) – not in degrees, minutes and seconds (42d 26′ 47″ N, 72d 58′ 36″ W). When XY data is prepared properly, you can use MyGeodata Converter to convert your data to various GIS / CAD formats including ESRI Shapefile, GeoJSON, KML / KMZ, GPX, GML, DXF, DGN and many others.
🌐
YouTube
youtube.com › watch
Calculate XY Coordinates and Export to Excel - YouTube
Do you need to: Calculate Latitude (Y) and Longitude (X) values for your point features? Share attribute records to Excel? Create a subset of records instead...
Published   May 28, 2021
Find elsewhere
🌐
YouTube
youtube.com › hydroinformatics academy
Convert UTM to Decimal Degrees /Latitude Longitude with Excel - YouTube
In today's tutorial, I am going to show you how to convert UTM coordinates to Decimal degrees (Latitude Longitude) by using MS Excel!This is a complete guide...
Published   February 19, 2022
Views   68K
🌐
EarthPoint
earthpoint.us › convert.aspx
Convert Coordinates
Convert Latitude/Longitude to UTM, UPS, MGRS, GARS, Maidenhead, GEOREF, State Plane, and back.
🌐
MyExcelOnline
myexcelonline.com › home › how to convert northing easting to lat long in excel
How to Convert Northing Easting to Lat Long in Excel | MyExcelOnline
January 29, 2026 - You can easily convert coordinates to longitude and latitude by using a custom VBA function. These functions use Easting/Northing values as inputs and convert them into longitude and latitude.
🌐
GIS Geography
gisgeography.com › home › gis analysis › adding excel lat long coordinates into arcgis
Adding Excel Lat Long Coordinates into ArcGIS - GIS Geography
March 9, 2024 - Next, click “Use the same coordinate system as the data layer”. Save the file. At this point, you permanently create a spatial file from an Excel spreadsheet. 1. Convert degrees/minutes/seconds to decimal degrees 2. Ensure the data frame is set to WGS 1984 3. Add Excel table to ArcGIS 4. Display XY Data 5. Save as a feature class · When you follow these quick 5 steps, you turn an Excel spreadsheet with latitude ...
🌐
ExcelDemy
exceldemy.com › home › advanced excel › how to convert lat long to utm in excel (with easy steps)
How to Convert Lat Long to UTM in Excel (with Easy Steps) - ExcelDemy
November 23, 2024 - Copy and paste the code into the module, and save the module. Then, in your Excel sheet, you can use the formula =LatLonToUTM(lat, lon) where lat and lon are the latitude and longitude coordinates you want to convert to UTM format.
🌐
A.CRE
adventuresincre.com › home › custom function to auto-populate latitude and longitude in excel (updated 2021)
Custom Function to Auto-Populate Latitude and Longitude in Excel (Updated 2021)
June 12, 2025 - What is less common, but just as easily done, is to use the geocoding API with a custom Excel function or via an Excel Add-In to convert a physical address to latitude and longitude coordinates instantly and without having to leave Excel. In this tutorial, I show you how to use VBA code to create a custom Excel function.
🌐
Excel Semi Pro
excelsemipro.com › home › articles › how to convert gps coordinates in excel
How to Convert GPS Coordinates in Excel | Excel Semi Pro
March 16, 2026 - You can convert GPS coordinates in Excel by splitting decimal degrees into three parts: whole-number degrees, whole-number minutes, and leftover seconds. Excel does not have a dedicated latitude and longitude conversion function, but standard formulas with INT, subtraction, and ROUND handle the job reliably.
🌐
Community
community.safe.com › home › forums › fme form › transformers › how do you convert the x y of a tab file into lat long then expose the lat long as attributes into a excel table? (i have point and area features)
How do you convert the x y of a tab file into lat long then expose the lat long as attributes into a excel table? (I have point and area features) | Community
March 20, 2017 - Reproject to Lat/Long using the Reprojector transformer. Then create the attribute using the GeometryExtractor (creates a geometry attribute with the definition) or the CoordinateConcatenator (results in a comma separated string of Lat/Long ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 5074502 › converter-for-latitude-longitude-feature-in-excel
Converter for latitude/longitude feature in excel - Microsoft Q&A
June 28, 2020 - But what if you are building some model (or calculator) and want to find out the distance, travel time, address points (latitude, longitude) and may be even distance matrix (given two sets of points, all distances between them)? We can use the public APIs from Bing maps or Google Maps to get the answer to our spreadsheet. ... Calculate Distance in Excelhttps://www.contextures.com/excellatitudelongitude.html ****See how to calculate distance in Excel, using Latitude and Longitude,
🌐
Quora
quora.com › How-do-you-convert-XY-coordinates-to-longitude-and-latitude
How to convert XY coordinates to longitude and latitude - Quora
Answer (1 of 5): If you are looking at (x, y) on a Mercator projection, then the *position* (x, y) is straightforward: Longitude = x Latitude = y However, things get interesting due to the distortion from the Mercator projection, when you want ...
🌐
EPSG.io
epsg.io › transform
Transform coordinates - GPS online converter
Transform your coordinates online easily with epsg.io