I'm wanting to select incoming data by comparing a multi value parameter to a text field(2000)which holds more info than that entered in the parameter.
An end user should be able to choose multiple codes (i.e. A, G, L, Z) as a parameter field (text) and the report should check each of those against the text field and display only the records which have one or more of these codes in the text field (the codes are separated by commas in the text field).
Record field
1 “C, F, N, O, P, Q, Z, AAA, AZA”
2 “B, D, E, F, R”
3 “A, B, C, J, K, R”
4 “B, C, S, T, U, V, W, X”
5 “A, G, M, V, Y”
6 “O, AK, LOBR”
7 “”
8 “H, T, Q”
9 “A, G, O”
In this case, I’d want the returned rows to be 1, 3, 5, and 9.
An end user should be able to choose multiple codes (i.e. A, G, L, Z) as a parameter field (text) and the report should check each of those against the text field and display only the records which have one or more of these codes in the text field (the codes are separated by commas in the text field).
Record field
1 “C, F, N, O, P, Q, Z, AAA, AZA”
2 “B, D, E, F, R”
3 “A, B, C, J, K, R”
4 “B, C, S, T, U, V, W, X”
5 “A, G, M, V, Y”
6 “O, AK, LOBR”
7 “”
8 “H, T, Q”
9 “A, G, O”
In this case, I’d want the returned rows to be 1, 3, 5, and 9.