I was trying to find the best way that I could do the following in VBA:
I have a list of coordinates where an event happened (its a longer list but just to give an example):
Location_Easting
527060
526900
524240
524320
525450
526460
527580
526830
524490
525300
526790
524950
523750
523770
I need to check if any of those coordinates fall into any of the 2 eastings given in a different tab, so essentially checking each of the event eastings (say they are in column B) if any of them falls in between 2 coordinates given in columns (say B and C) on a different tab.
What would be the best way to write this loop?