A group of us are (anonymously) Benchmarking against one another - I've created a number of reports to show just our stats.
The filter I am using to restrict player name is as follows:
#Player#='Player01' OR #Player#='Player02' OR #Player#='Player03' OR #Player#='Player04' OR #Player#='Player05' OR #Player#='Player06' OR #Player#='Player07' OR #Player#='Player08' OR #Player#='Player09' OR #Player#='Player10' OR #Player#='Player11' OR #Player#='Player12' OR #Player#='Player14'
The players involved are growing and changing - I have to have the filter in each report, so every change I have to make in every report. Not too much hassle at the moment, but I expect the number of reports I have to grow dramatically as we get into this. I would much prefer to filter with a wildcard character so that I can forget about it - I'd like to replace the code above with something like....
#Player#='Player*'
The code above does not work, but hopefully you can see from it what I'm trying to do - is it possible for me to add a filter using a wildcard?
Thanks