Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: Hide Duplicate rows

    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...

  • RE: Find a word in a String

    Hi Kapil, I not sure where you are going wrong, but it should work.

  • RE: Find a word in a String

    Try -

    SELECT*

    FROMTableA

    WHEREPATINDEX('%[ ]cd[ ]%', [Values]) > 0

    OR PATINDEX('%[ ]cd', [Values]) > 0

    OR PATINDEX('cd[ ]%', [Values]) > 0

Viewing 3 posts - 1 through 4 (of 4 total)