Is there a way to use the Filter Bar to select BOTH a grp AND wildcards?
example: grp:Documents .AND. handout (any document type, with "handout" in filename).
.
I think this can be done in the Find utility panel; but it would be nice to be able to do a quick filter in the Filter Bar, but it doesn't seem to work (see screen clip below)
Your second clause is using Contains not Name.
Thanks for the guidance;
My silly mistake; File Filter panel works fine -- with proper multiple clauses (see below).
However, seems I can't do a multiple AND filter in FAYT or the pop-up Filter Bar since can't use regex there.
I CAN do simple filters by combining Folder Format ex: 'Documents" (or other formats), and then add other simple filter(s) in the Filter Bar (pictured previously).
I guess a more complex filter would require using full "File Filter" with multiple clauses joined by AND, or else some sort of script.
grp:Documents
will expand into something like *.(doc|docx|xls|xlsx|...)
So you can use *handout*grp:Documents
to match both the name and the extension.
It would expand to something like *handout**.(doc|docx|xls|xlsx|...)
This will also work, although it is less readable: *handoutgrp:Documents
It would expand to something like *handout*.(doc|docx|xls|xlsx|...)