Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
I have used GENERATESERIES to allow me to toggle 1 to 5 on two slicers, which make up my 'total' measure.
I'm trying to filter so the slicer will only apply to #3 in the table, i.e. if I change it to Impact 5 x Likelihood 5 the total column will be 25, but it changes for all items in the table and not just #3.
Grateful for any help.
Solved! Go to Solution.
Hi @Anon42 ,
I create a table as you mentioned.
Then I create a new measure named total.
total =
SUM ( 'Table'[Impact] ) * SUM ( 'Table'[Likelihood] )
I think you can try this measure.
Measure =
VAR _A =
SELECTEDVALUE ( 'Table'[Impact] )
VAR _B =
SELECTEDVALUE ( 'Table'[Likelihood] )
RETURN
IF ( SELECTEDVALUE ( 'Table'[#], 3 ), _A * _B, 'Table'[total] )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anon42 ,
I create a table as you mentioned.
Then I create a new measure named total.
total =
SUM ( 'Table'[Impact] ) * SUM ( 'Table'[Likelihood] )
I think you can try this measure.
Measure =
VAR _A =
SELECTEDVALUE ( 'Table'[Impact] )
VAR _B =
SELECTEDVALUE ( 'Table'[Likelihood] )
RETURN
IF ( SELECTEDVALUE ( 'Table'[#], 3 ), _A * _B, 'Table'[total] )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
36 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |