I have an excel workbook that has several sheets. One of the sheets is named “Data” which contains 2 columns filled with latitude and longitude values. The latitude column is a dynamic range named “LatitudeSeries”. The longitude column is a dynamic range named “LongitudeSeries”.
The Latitude data is in the format: 29 50.0630N
The Longitude data is in the format: 081 23.0193W
In addition to the numbers, both columns contain random cells that have a text string named: Not Valid
I would like to create a formula that searches both dynamic range series for the most common value or the pair that appears the most times. The formula needs to ignore the text string: “Not Valid” but not ignore the number due to the “N” or “W” in the latitude/longitude data. I would like the most common pair to be extracted from the dynamic range and placed on a sheet named “GPS” in cell A1 for latitude and A2 for longitude.
Should I set up a MODE formula for latitude column and Vlookup for its respected longitude value?
I have been working with a formula that ignores the text string and finds the most common value but it also ignores the latitude value due to the”N” in the number. And I have been unable to direct it to the dynamic range named “Data!LatitudeSeries”
=IF(MODE(R1:R10)>0,MODE(R1:R10),"")
Is there a way to search for the most common pair while ignoring test string? Should I set up a mode formula for latitude range and vlookup longitude?
Any assistance would be appreciated!
The Latitude data is in the format: 29 50.0630N
The Longitude data is in the format: 081 23.0193W
In addition to the numbers, both columns contain random cells that have a text string named: Not Valid
I would like to create a formula that searches both dynamic range series for the most common value or the pair that appears the most times. The formula needs to ignore the text string: “Not Valid” but not ignore the number due to the “N” or “W” in the latitude/longitude data. I would like the most common pair to be extracted from the dynamic range and placed on a sheet named “GPS” in cell A1 for latitude and A2 for longitude.
Should I set up a MODE formula for latitude column and Vlookup for its respected longitude value?
I have been working with a formula that ignores the text string and finds the most common value but it also ignores the latitude value due to the”N” in the number. And I have been unable to direct it to the dynamic range named “Data!LatitudeSeries”
=IF(MODE(R1:R10)>0,MODE(R1:R10),"")
Is there a way to search for the most common pair while ignoring test string? Should I set up a mode formula for latitude range and vlookup longitude?
Any assistance would be appreciated!