I have a list of zip codes spread across several columns and organized by county:
Boone | Cook | DeKalb | Dupage
60033 | 60004 | 60111 | 60007
60135 | 60005 | 60112 | 60101
60145 | 60007 | 60115 | 60103
60146 | 60008 | 60129 | 60106
My goal is to search the list of zip codes organized across multiple columns [where the lookup_value is a zip code], and then return the name of the county that that zip code is located under.
Can anybody help?