Forum Discussion
RobMac14
Feb 18, 2022Copper Contributor
VLOOKUP, INDEX and MATCH - can't get them to work
Hi, I'm trying to set up an automatic query that when a code is entered a data dump of information is searched to find the risk ratings for that code in 3 different counties. The data dump will be ...
- Feb 18, 2022
You could try this, if you don't have office 365, then you'll need to hit Ctrl+Shift+Enter after keying into the formula bar:
=INDEX('County Data Dump'!$H$2:$H$1846, MATCH(1, ('County Data Dump'!$D$2:$D$1849=$B3)*('County Data Dump'!$B$2:$B$1849=C$2), 0))
JMB17
Feb 18, 2022Bronze Contributor
You could try this, if you don't have office 365, then you'll need to hit Ctrl+Shift+Enter after keying into the formula bar:
=INDEX('County Data Dump'!$H$2:$H$1846, MATCH(1, ('County Data Dump'!$D$2:$D$1849=$B3)*('County Data Dump'!$B$2:$B$1849=C$2), 0))
RobMac14
Feb 21, 2022Copper Contributor
JMB17 - thank you ever so much for replying. Your suggestion worked perfectly and I now have a working spreadsheet to pull out the data I need.