Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

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?

 
  • Anonymous's avatar
    Anonymous
    7 years ago

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

2 Replies

  • 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

    • Anonymous's avatar
      Anonymous
      Not applicable

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