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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
navind
Regular Visitor

paginated report Mutiple value parameters not working as expected

 

We are using power bi dataset to create and paginated report with mutiple cascade parmeters, with cat, sub cat1, sub cat 3, sub cat 4, sub cat 5.

 

We select mutiple parent categories, cooresponsing sub cat1 should fill, our dax works fine for single secltion, but fail when we do select all, does not return epected results when we select more then 1 category from parent.

 

Code we have written.

EVALUATE
SUMMARIZECOLUMNS (
'dim Pcat'[subcat],
FILTER (
'dim pcat',
'dim Pcat'[subcat] <> BLANK() &&
(
ISBLANK(@cat) || -- Handle empty parameter case
CONTAINSSTRING("," & @Cat & ",", "," & 'dim Pcat'[cat] & ",")
)
)
)

1 REPLY 1
Anonymous
Not applicable

Hi @navind 

 

Could you please provide me with some sample data and the results based on sample data? That would be very helpful. Please remove any sensitive data in advance. Thank you for your time and efforts in advance.

 

Best Regards,
Yulia Xu

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors