Filter function with wildcards

reaktorblue

Board Regular
Joined
Aug 8, 2007
Messages
87
Office Version
  1. 365
Platform
  1. Windows
Hello,

I'm trying to figure out how to use the new filter function in Office 365 Insiders. =FILTER(tblCourses[Name],tblCourses[Name]=B1) works perfectly fine if the text in B1 explicitly matches the text in the Name column of the tblCourses table.

What I'm trying to do is incorporate a loose search so that for example, if "Python" was in B1, than courses "Python for Beginners" or "Variables in Python" would be returned.

I thought maybe =FILTER(tblCourses[Name],tblCourses[Name]="*"&B1&"*") would work but it doesn't. Anyone have any idea how to accomplish this with the filter function?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
So I was able to figure it out. For anyone who has the same question and is on Office 365 Insiders, the following formula works. It's results return anything with the text in cell B1.

=FILTER(tblCourses[Name],ISNUMBER(SEARCH(B1,tblCourses[Name])))
 
Upvote 0

Forum statistics

Threads
1,213,487
Messages
6,113,938
Members
448,534
Latest member
benefuexx

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