Gooooood Morning!
I have a series of lat/longs formatted as the following, each unique location is a single cell in the same column: 39.377468N 77.407287W
I need to get these formatted to two separate columns as: 39.377468 and -77.407287 (ie removing the "N" and "W", splitting these into two columns, and adding a "-" to the longitude value)
Is REGEX the right tool for this? I've never used it, and looking up the syntax was a bit overwhelming.
Thank you!