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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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