Hello,
I'm not having any luck using wildcards to return values from a table of data based on a list in a Named Range.
I'm using the following to return a list of books that are part of a given Series. However, due to multiple values in the Series column, I need to be able to use wildcards. In my sample data, we can see that nothing was returned for the "Notebook of Doom" series. That's because the source data has either of the two values shown to the right of the Sample Data.
I tried modifying the search criteria using
Any help would be greatly appreciated, Thank you...
I'm not having any luck using wildcards to return values from a table of data based on a list in a Named Range.
I'm using the following to return a list of books that are part of a given Series. However, due to multiple values in the Series column, I need to be able to use wildcards. In my sample data, we can see that nothing was returned for the "Notebook of Doom" series. That's because the source data has either of the two values shown to the right of the Sample Data.
I tried modifying the search criteria using
"*" & l_SeriesActive & "*"
to no avail.Any help would be greatly appreciated, Thank you...
Reading Tracker.xlsm | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | SAMPLE DATA | NAMED RANGE | ||||||
2 | Quiz | Book No. | Title | Series | Series | |||
3 | 122343 | 1 | Saving Mister Nibbles | Elliot's Park; | Elliot's Park; | |||
4 | 123891 | 2 | Haunted Hike | Elliot's Park; | Notebook of Doom; | |||
5 | 129963 | 3 | Walnut Cup | Elliot's Park; | Trouble at Table 5; | |||
6 | 507302 | 1 | Trouble at Table 5: The Candy Caper | Trouble at Table 5; | ||||
7 | 507301 | 2 | Trouble at Table 5: Busted by Breakfast | Trouble at Table 5; | Need Wildcards to return: | |||
8 | 511879 | 3 | Trouble at Table 5: The Firefly Fix | Trouble at Table 5; | Notebook of Doom; Branches; | |||
9 | 511878 | 4 | Trouble at Table 5: I Can't Feel My Feet | Trouble at Table 5; | Branches; Notebook of Doom; | |||
10 | 519164 | 5 | Trouble at Table 5: Trouble to the Max | Trouble at Table 5; | ||||
11 | 520203 | 6 | Trouble at Table 5: Countdown to Disaster | Trouble at Table 5; | ||||
Series |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A3:D11 | A3 | =LET(x,FILTER(CHOOSECOLS(t_Books,1,23,2,5),COUNTIFS(l_SeriesActive,t_Books[Series])),SORT(x,{4,2})) |
Dynamic array formulas. |
Named Ranges | ||
---|---|---|
Name | Refers To | Cells |
l_SeriesActive | =t_SeriesActive[Series] | A3 |