Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
ld17
Helper II
Helper II

Simply need to filter blanks out of a paginated report

I know there must be an easy solution to this, but I can't find many results for paginated reports. I simply need to filter blank rows and columns out of a paginated. It's set up and works fine in my PBIX report, but once I try to create the paginated report, I can't get them to filter out. Just want that first row and column filtered out:

 

ld17_1-1678221706338.png

 

 

1 ACCEPTED SOLUTION
ErwinS
Advocate I
Advocate I

Search with SSRS io report builder, this will give you much more answers.

 

https://www.techbrothersit.com/2016/01/how-to-hide-empty-rows-in-ssrs-report.html

View solution in original post

3 REPLIES 3
KyleMB350
Frequent Visitor

The content from the link mentioned is true, but the syntax is slightly incorrect. Here are the steps with the correct function to hide nulls.

First go to the Row Properties

KyleMB350_0-1693325986233.png

Under Visibility, Select "Show or hide based on expression"

KyleMB350_1-1693326021110.png

This will check if null. If true, hide the row.

KyleMB350_2-1693326034779.png

=IIF(isNothing(Fields!Projects_ProjectName_.Value),true,false)

 

 

 

ErwinS
Advocate I
Advocate I

Search with SSRS io report builder, this will give you much more answers.

 

https://www.techbrothersit.com/2016/01/how-to-hide-empty-rows-in-ssrs-report.html

Thanks so much! Very late responding, but this was the correct solution.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

Top Solution Authors