Viewing 3 posts - 1 through 4 (of 4 total)
There is an option "Row Visibility" in SSRS, through which you can control the table row visibility. You can use the same expression to control that row visibility which causing...
April 4, 2013 at 1:26 am
#1603448
Hi Kapil, I not sure where you are going wrong, but it should work.
March 28, 2013 at 2:21 am
#1601486
Try -
SELECT*
FROMTableA
WHEREPATINDEX('%[ ]cd[ ]%', [Values]) > 0
OR PATINDEX('%[ ]cd', [Values]) > 0
OR PATINDEX('cd[ ]%', [Values]) > 0
March 28, 2013 at 12:23 am
#1601459