Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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!
Solved! Go to Solution.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@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])
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!
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Aaah right @mahoneypat , that makes sense. I'll try another way, then ! Thanks a lot.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.