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

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
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,767
Messages
6,186,907
Members
453,386
Latest member
testmaster

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