INDEX/MATCH with wildcard

LauraBAP

New Member
Joined
Feb 22, 2019
Messages
4
So, I have a list of employee names that I'm matching a plan type (there are multiple plans per employee) and having it return a value.

My issue is that the value from the sheet that the information is on will sometimes have a space at the end of the employee name. I've been trying to use a wildcard with my formula, but I keep getting N/A.

I know I have to be doing something wrong, but I'm getting frustrated.

C4 = Employee name
D4 = plan type

=INDEX('Membership Details'!$C$3:$K$1599,MATCH(1,('Membership Details'!$C$3:$C$1599=C4&"*")*('Membership Details'!$G$3:$G$1599=D4),0),9)

I know the error is in the ('Membership Details'!$C$3:$C$1599=C4&"*")*('Membership Details'!$G$3:$G$1599=D4) part, I'm just not smart enough (or patient enough at this point) to figure it out.

Any help is SO appreciated!

Laura
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Not a stupid question at all lol - I am. I thought about editing earlier to include that little tid bit of info.
 
Upvote 0
My issue is that the value from the sheet that the information is on will sometimes have a space at the end of the employee name. I've been trying to use a wildcard with my formula, but I keep getting N/A.

Maybe this...
=INDEX('Membership Details'!$C$3:$K$1599,MATCH(1,(TRIM('Membership Details'!$C$3:$C$1599)=C4)*('Membership Details'!$G$3:$G$1599=D4),0),9)
Ctrl+Shift+Enter

Hope this helps.

M.
 
Upvote 0
Nope. I'm still getting the N/A error.

The info in C4 doesn't have the space at the end of the name, it's the information on the Membership Details $C3:$C$1599 where the space is included. I did do a test on that sheet, and took out the space, and it worked. That information changes every month, and I don't want to have to remove spaces for 1500 lines.
 
Upvote 0
Nope. I'm still getting the N/A error.

The info in C4 doesn't have the space at the end of the name, it's the information on the Membership Details $C3:$C$1599 where the space is included. I did do a test on that sheet, and took out the space, and it worked. That information changes every month, and I don't want to have to remove spaces for 1500 lines.

In my tests, using TRIM, everything worked perfectly - TRIM deletes extraneous spaces.
The formula should also have worked for you. If it didn't, so your problem is not only extra space(s) at the end.

See if this new version works - array formula
=INDEX('Membership Details'!$C$3:$K$1599,MATCH(1,(ISNUMBER(SEARCH(C4,'Membership Details'!$C$3:$C$1599)))*('Membership Details'!$G$3:$G$1599=D4),0),9)
confirmed with Ctrl+Shift+Enter, not just Enter

M.
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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