Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello there,
I have a slicer with 5 options: Bing, Facebook, Google, NewTraffic and SteelHouse.
I am trying to get selected value from the slicer into a variable. I am able to get it correctly if there is only one of these selected. However, if i select Bing and Google, i cant get it to work.
In order to do the test i created a measure and presented it in a "Card" visual. The measure looks like this:
Solved! Go to Solution.
Hi @Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _selelct=SELECTCOLUMNS('PlanDataSources',"select",[DataSource])
return
CALCULATE(
SUM('PlanDataSources'[RevenuePlan]),FILTER(ALL(PlanDataSources),
'PlanDataSources'[DataSource] in _selelct))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _selelct=SELECTCOLUMNS('PlanDataSources',"select",[DataSource])
return
CALCULATE(
SUM('PlanDataSources'[RevenuePlan]),FILTER(ALL(PlanDataSources),
'PlanDataSources'[DataSource] in _selelct))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Anonymous , For the first one try like
SlicerTest =
VAR SELECTION = concatenatex(SlicerOptions, SlicerOptions[DataSource], ", ")
return SELECTION
For second
Actually that doesnt work.
The solution for :
SlicerTest =
VAR SELECTION = concatenatex(SlicerOptions, SlicerOptions[DataSource], ", ")
return SELECTION
Is fine.
However,
When i try to pass this selection down to my switch function or your second solution it didnt work.
It does not recognise SELECTION within
User | Count |
---|---|
77 | |
76 | |
44 | |
30 | |
26 |
User | Count |
---|---|
97 | |
91 | |
52 | |
47 | |
46 |