RDLC hide first row on tablix Header

2022-12-04T06:53:02.713+00:00

I have in RDLX report generator one tablix with two lines in tablix Header. I want to repeat both of rows on every page in report with Tablix, but the fist row in header I would like to hide on first row, better saying if the row in the first row on tablix then hide-it, if is repeating in second page don't hide.
266849-image.png

There are two lines in table header. Marked with red and blue on printscreen. Both of lines are marked as repeat with Tablix on every page, and this it WORKS! I want to hide the red row IF is on first page, better said or is the first row on Tablix.

SQL Server Reporting Services
SQL Server Reporting Services

A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.

Developer technologies | Visual Studio | Other
Developer technologies | Visual Studio | Other

A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Joyzhao-MSFT 15,651 Reputation points
    2022-12-05T02:27:12.77+00:00

    Hi @SZAKI SOFTWARE COMPANY Szakacs Mikes Istvan
    Logically we just need to set the visibility expression for this row: =IIF(Globals!PageNumber=1,True,False)
    Unfortunately, global variables can be used only in the page header and footer. So you should consider placing that row in a header or footer.
    Best Regards,
    Joy


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.