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

Dynamic Meassure Selection

Hello,

 

I have created a meassure (below) ,

Total Sales by Dept = IF (ISCROSSFILTERED(DynamicSelection[Selection]) ,
SWITCH(TRUE(),
VALUES(DynamicSelection[Selection]) = "Finance" , 'TableDept'[Total Cost(USD)],
VALUES(DynamicSelection[Selection]) = "Account" , 'TableDept'[Total Cost (EUR)],
VALUES(DynamicSelection[Selection]) = "Operations" , 'TableDept'[Total Cost (Fr)],
BLANK()))
 

Above meassure allows users to dynamically select the department from the slicer and then all the visual only presents the data based on user selection. It works great, but as soon user selects other values from other slicers (example Year, Manager, etc.) in the report, values of measure above does not change.

 

Assuming other slicer is Employee[Manager].

 

Do I need to add something to above meeasure to make it work?

 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Actually, it was a data issue. My orignal DAX formula worked just fine. Thanks for teh help @TomMartens

View solution in original post

2 REPLIES 2
TomMartens
Super User
Super User

Hey,

 

give this a try:

Total Sales by Dept = IF (ISCROSSFILTERED(DynamicSelection[Selection]) ,
SWITCH(TRUE(),
VALUES(DynamicSelection[Selection]) = "Finance" , CALCULATE(SUM('TableDept'[Total Cost(USD)])),
VALUES(DynamicSelection[Selection]) = "Account" , 'TableDept'[Total Cost (EUR)],
VALUES(DynamicSelection[Selection]) = "Operations" , 'TableDept'[Total Cost (Fr)],
BLANK()))

I just changed one column reference :-), put the CALCULATE(SUM(...)) around the remaining column references.

If this will not solve your issue, you might consider to prepare a pbix file with some sample data, upload the file to onedrive or dropbox and share the link.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
Anonymous
Not applicable

Actually, it was a data issue. My orignal DAX formula worked just fine. Thanks for teh help @TomMartens

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.