The table has a field that may contain any combination of the four letters"DICS." For example any of these: "I", "DC", "DIS", "CS", or "DICS."
I put "WHERE DISCScores IN (@DISCScores)" in the Dataset and set the Parameter properties to include each of the four letters, but the report will only list records where the DISCScores field contains only one of the letters. With all of them selected it will display only the records that contain single letters, but I need it to contain all the records where DISCScores includes ANY of the selected leters.
For example if only "S" is selected in the parameters, then I want all the records with "S", "DIS", "CS", "IS", "DS" or "DICS", instead of just the ones with "S." If "I" and "S" are checked in the parameter prompt, then I want records where DISCScores is "IS", "DIS", "ICS" or "DICS."
I'm expecting to need to use an expression in the parameter properties, but I wouldn't know how to craft that expression.
Thanks!