I want to match the (Sheet1)clent /group to the (LookupTable)name /group and return the corresponding retention

kellykivisto

New Member
Joined
Oct 30, 2008
Messages
5
I want to match the (Sheet1) clent /group to the (LookupTable)name /group and return the corresponding retention.

Formula i am using in Sheet1 cell-Retention Policy but is returning the wrong retention because I have multiple instances of the client/ name??
=IF(ISNA(MATCH(A2&"/"&B2,LookupTable!A:A&"/"&LookupTable!B:B,0)),"",VLOOKUP(A2,LookupTable!$A$2:$H$100000,3,FALSE))

Problem:
It is only matching and inserting the first instance of the Retention when there are 3 possible answers.

ClientGroupRetention Policy
potatoNtwrkr_Daily 4 - 12:00 AMYear
potatoNetworkDaily-6AMYear
potatoNtwrkr_Daily 4 - 12:00 AMYear

<tbody>
</tbody>








NameGroupRetention Policy
potatoNtwrkr_Daily 4 - 12:00 AMYear
potatoNetworkDaily-6AM7 Years
potatoNtwrkr_Daily 4 - 12:00 AMMonth

<tbody>
</tbody>
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi and welcome to MrExcel,

Just returning the first instance of the Retention is caused by the resukt of the VLOOKUP function.

In wording your VLOOKUP does this:

  1. take value of Cell A2 (potato)
  2. Look in column A of the searchtable (LookupTable)
  3. and if there is an exact match return the third column from the seachtable (LookupTable)

It will return the first exact match and then it's done, if it didn't find an exact match it will return #N/A and it's done.

So if you want it to return the 2nd or 3rd instance you need to instruct Excel to do so by adding criteria to your formula.
Of course these criteria must be set in a way Excel can distinguish if it needs to return the 1st, 2nd or 3rd instance.

eg: excel will never be able to distinguish the difference between Ntwrkr_Daily 4 - 12:00 AM from row 1 and 3 of your table. In the table they both will look as "potato\Ntwrkr_Daily 4 - 12:00 AM" hence Excel can't distinguish the differences but if you add the row number to, it will look like this "potato\Ntwrkr_Daily 4 - 12:00 AM\1" and "potato\Ntwrkr_Daily 4 - 12:00 AM\3".


HtH
 
Upvote 0
Thank you for your response!..that makes perfect sense, so how do I adjust the formula go through and look at each row?

Kelly
 
Upvote 0
Hi,

Can't answer that without knowing how you want to distinguish between row 1 and 3 of your example cause they are exactly the same.
 
Upvote 0
Sorry that was a typo...the groups should be:

Ntwrkr_Daily 4 - 12:00 AM
NetworkDaily-6AM
Networker - Yearly Backups

<colgroup><col></colgroup><tbody>
</tbody>
 
Upvote 0
Hi Kelly,

If i was just a typo and your list contains only unique items, your initial formula could suffice.
If you need more help, just share a example copy of your workbook.
 
Upvote 0
I'm sorry am not sure how to attach a workbook? The only entries are those that I have already posted though, will these not work?
 
Upvote 0
Hi Kelly,

Look at this:


Excel 2016 (Windows) 64 bit
ABC
1ClientGroupRetention Policy
2potatoNtwrkr_Daily 4 - 12:00 AMYear
3potatoNetworkDaily-6AM7 Years
4potatoNetworker - Yearly BackupsMonth
Sheet1
Cell Formulas
RangeFormula
C2{=IFERROR(INDEX(LookUpTable!$C$2:$C$4,MATCH(1,(LookUpTable!$A$2:$A$4=Sheet1!A2)*(LookUpTable!$B$2:$B$4=Sheet1!B2),0)),"")}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Last edited:
Upvote 0
Thank you so much, that worked perfectly! Now I just have to figure how to post the samples the way you have!!

Kelly
 
Upvote 0
Posting Aids
You cannot attach or upload actual files as samples.
However, you can post small Excel screen shots using MrExcel HTML Maker (Win), Forum Tools Add-In by RoryA (Win & Mac), Excel jeanie (Win) or Borders-Copy-Paste (Either). There is a little more help about some of these methods in this Attachments Sticky. Test the methods in the Test Here forum before use in a main forum for the first time.
If posting vba code, please use Code Tags - like this
Code:
Paste code here
- or use the VBHTML Maker
There is a Test Here forum on this board where you can test these posting aids before using them in your actual questions.

http://www.mrexcel.com/forum/board-announcements/127080-guidelines-forum-use.html
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,375
Members
448,955
Latest member
BatCoder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top