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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
JemmaD
Resolver II
Resolver II

Remove nulls from a list in Paginated Report Builder

I have a parameter for users to select the quarter of the year so the list should be 1 to 4. 

When I run the parameter query there is a null (see screenshot). I think it's causing issues for other paramaters, is there a way to remove this null?

 

DatesQuarter.png

1 ACCEPTED SOLUTION
negi007
Community Champion
Community Champion

@JemmaD 

Method 1:

 

EVALUATE
FILTER(

SUMMARIZECOLUMNS(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())

 

 

Method 2

 

EVALUATE
FILTER(

DISTINCT(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())

 

Method 3

EVALUATE
FILTER(

DISTINCT(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

View solution in original post

2 REPLIES 2
DanIvanek
New Member

This also helped me with select all as a default value. I was strugling with it for so long. 

 

negi007
Community Champion
Community Champion

@JemmaD 

Method 1:

 

EVALUATE
FILTER(

SUMMARIZECOLUMNS(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())

 

 

Method 2

 

EVALUATE
FILTER(

DISTINCT(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())

 

Method 3

EVALUATE
FILTER(

DISTINCT(
    'Calendar'[Quarter]
), 'Calendar'[Quarter] <> Blank())




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.