Forum Discussion

SamuelDesguin's avatar
SamuelDesguin
Regular Visitor
5 years ago
Solved

Using SWITCH with variables and filters in measures

Dear all,
I have been running into a problem for which I could not find a solution here. Basically, I want to switch views between different ByCountry view or ByProduct view, depending on an unconnected slicer. The following formula has been working like a charm (here I put generic names to make it clearer):

 

SWITCH(
    VALUES(Slicer[DesiredFilter]), 
        "ByCountry",CALCULATE([TotalSales], TREATAS(VALUES(Slicer[Value]),'Sales'[Country])),
        "ByProduct",CALCULATE([TotalSales], TREATAS(VALUES(Slicer[Value]),'Sales'[Product])),
        [TotalSales])

 

To take it further (to be able to combine filters), I would now like to store my filters within a variable. It works when I simply store a filter in a variable, like so:

 

var SelectedFilter = TREATAS(VALUES(Slicer[Value]),'Sales'[Country])
return 
CALCULATE([TotalSales],SelectedFilter)

 

But if I want to switch between filters within my variable, it doesn't work anymore. I'm trying like this:

 

var SelectedFilter = SWITCH(VALUES(Slicer[Key]), 
        "ByCountry",TREATAS(VALUES(Slicer[Value]),'Sales'[Country]),
        "ByProduct",TREATAS(VALUES(Slicer[Value]),'Sales'[Product]),
        ALLSELECTED())
return
CALCULATE([TotalSales],SelectedFilter)

 

But got the message: "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.

Can anyone help me with this? Any help is greatly appreciated!



  • mahoneypat's avatar
    mahoneypat
    5 years ago

    You can't return a table in a SWITCH (or an IF), which is the problem with your measure.  You'll need to switch between full expressions (like Amit suggested).  You could explore using CROSSJOIN to precombine your filters or using Calculation Groups, but I don't know if that would work.

     

    Pat

     

4 Replies

  • SamuelDesguin , Try like

     

    SWITCH(
        selectedvalue(Slicer[DesiredFilter]), 
            "ByCountry",CALCULATE([TotalSales], TREATAS(VALUES(Slicer[Value]),'Sales'[Country])),
            "ByProduct",CALCULATE([TotalSales], TREATAS(VALUES(Slicer[Value]),'Sales'[Product])),
            [TotalSales])
    • SamuelDesguin's avatar
      SamuelDesguin
      Regular Visitor

      Hi amitchandak !
      Thanks for trying to solve this.
      This is correct but does not solve my problem, because what I wanted to do is to isolate the filters in variables so that I could cross multiple filters in my calculate at the end. Eventually, it would look kind of like this:

      Var Filter1 = ...
      Var Filter2 = ...
      Var Filter3 = ...
      Var SelectedFilter1 = SWITCH.. (selects one of the filters above)
      Var SelectedFilter2 = SWITCH.. (selects one of the filters above)
      Return CALCULATE([TotalSales], SelectedFilter1, SelectedFilter2)

      And my problem here is with this SWITCH function that apparently does not return what my CALCULATE function would like as filters. Any ideas for that? Thanks!

      • mahoneypat's avatar
        mahoneypat
        Microsoft Employee

        You can't return a table in a SWITCH (or an IF), which is the problem with your measure.  You'll need to switch between full expressions (like Amit suggested).  You could explore using CROSSJOIN to precombine your filters or using Calculation Groups, but I don't know if that would work.

         

        Pat