Multi-value optional filters with the usage of wildcard in SSRS 2005
问题 I have asked this question before but there are no solution to it. I have created a multivalue filter with the following data-set. SELECT PASS_M, ENTRY_DT, EXIT_DT, WORKED_HRS, ACCESS_LOCATION_X, IC_N, COMPANY_M, CONSECUTIVE_D FROM TEMP_TARGET WHERE (CONSECUTIVE_D >= @consecDays) AND (ENTRY_DT BETWEEN @startDate AND @endDate) AND (ACCESS_LOCATION_X LIKE @accessVar) AND (IC_N LIKE @icVAr) It would be relatively easy if the value of my accessVar does not use wildcard but i needed that. So there