Wildcard in index sort filter formula

creative999

Board Regular
Joined
Jul 7, 2021
Messages
116
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. MacOS
Hi

Wildcards dont seem to work in a index sort filter formula. Any suggestions here:

=IFERROR(INDEX(SORT(FILTER(DATA!$A$2:$AC$1000,(DATA!$B$2:$B$1000>=$A$1)*(DATA!$C$2:$C$1000="PUBLISH*"),""),4,-1),1,3),"--")
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hello, would this work for you (depending on wheter e.g. EPUBLISH is allowed or not):

Excel Formula:
=IFERROR(INDEX(SORT(FILTER(DATA!$A$2:$AC$1000,(DATA!$B$2:$B$1000>=$A$1)*(ISNUMBER(FIND("PUBLISH",DATA!$C$2:$C$1000))=TRUE),""),4,-1),1,3),"--")
 
Upvote 0
The following should address the problem of the first one:

Excel Formula:
=IFERROR(INDEX(SORT(FILTER(DATA!$A$2:$AC$1000,(DATA!$B$2:$B$1000>=$A$1)*(MAP(DATA!$C$2:$C$1000,DATA!$C$2:$C$1000,LAMBDA(x,y,COUNTIFS(x:y,"PUBLISH*")))>0),""),4,-1),1,3),"--")
 
Upvote 0
if you want the values to start with publish you could also use:
Excel Formula:
LEFT(DATA!$C$2:$C$1000, LEN("Publish"))="Publish"
 
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,728
Members
453,368
Latest member
positivemind

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