I have a spreadsheet with four columns
A B C D
Advertiser Industry / CreativeType / VideoType / Click Rate
I need a solution that will match a unique record for inputs A,B,&C and return the corresponding value in the final CTR column, D. I've tried an INDEX MATCH array combination, but the presence of duplicates is screwing things up (I think). For instance some sample lines:
Auto / Flash / Video
Auto / Rich Media / Non-Video
Auto / Rich Media / Video
Retail / Flash / Video
Retail / Flash / Video
I can't seem to find a way to make this work. Help is much appreciated, thanks.
You can use an Array - assume for sake of example that criteria A1:C1 on RESULT sheet and data stored on DATA sheet
If you want to handle Errors (no match) wrap the above in an outer IFERROR wrapper=INDEX(DATA!D1:D100,MATCH(RESULT!A1&"^"&RESULT!B1&"^"&RESULT!C1,DATA!A1:A100&"^"&DATA!B1:B100&"^"&DATA!C1:C100,0)) confirmed with CTRL + SHIFT + ENTER
Assuming the CTR values are consistent for duplicates there should be no issue... if they are not you would need to determine which of the duplicates you would want to "match"Originally Posted by dohearn
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
whoa...thanks. that worked quite nicely.
- d
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks