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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

power bi dynamic slicer row matrix selection

I have a matrix on brand and country.
Now I want let the user choose If they want to see the generic cost. I prefer not to have a slicer with all the brands. (Generic is a brand in this case).
This is what I tried, but it gives me an empty matrix:

ReportFilter = 
    IF(HASONEVALUE(ReportFilters[ReportFilters]),
    SWITCH(VALUES(ReportFilters[ReportFilters]),
        "All", [Total AdwordsCost],
        "All(eclusief Generic)", CALCULATE([Total AdwordsCost], FILTER('Brands','Brands'[Brand] <> "Generic"))
        ),

Please help me out.

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

Based on my test. Your formula worked well in my side. Also I create another measure to work on it, it worked well as well.

 

Measure = var sele = SELECTEDVALUE(ReportFilters[ReportFilters])
return
IF(sele="All",[Total AdwordsCost],IF(sele="All(eclusief Generic)",CALCULATE(SUM(Brands[Column3]),FILTER(Brands,'Brands'[Brand] <> "Generic"))))

Capture.PNG

 

For more details ,please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

4 REPLIES 4
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

Could you please share your sample data and excepted reuslt to me. You can upload your files to one drive and share the link to me.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

Dear @v-frfei-msft

 

Is screenshot of the sample data enough?2018-12-05 10_59_11-Untitled - Power BI Desktop.png

Hi @Anonymous,

 

Based on my test. Your formula worked well in my side. Also I create another measure to work on it, it worked well as well.

 

Measure = var sele = SELECTEDVALUE(ReportFilters[ReportFilters])
return
IF(sele="All",[Total AdwordsCost],IF(sele="All(eclusief Generic)",CALCULATE(SUM(Brands[Column3]),FILTER(Brands,'Brands'[Brand] <> "Generic"))))

Capture.PNG

 

For more details ,please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

@v-frfei-msft 

 

Indeed the formula worked perfect :). I Have made a typo.

Thanks for your cooperation.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.