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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors