Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Solved! Go to Solution.
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())
Proud to be a Super User!
This also helped me with select all as a default value. I was strugling with it for so long.
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())
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!