Wildcard in index sort filter formula

creative999

Board Regular
Joined
Jul 7, 2021
Messages
108
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

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
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,223,877
Messages
6,175,134
Members
452,614
Latest member
MRSWIN2709

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