Forum Discussion
Slicer & value pick
So I have say 3 columns,
(num)Col A (num)Col B (num)Col C (Calculated)
0.5 2(variable) 0.5 * 2
7 5 7 * 5
5 4 5*4
I want to pick a value for Col B using Slicer (variable value), and Col C should automatically the col B value accross the board! meaning entrie col C will use Col B variable value. Any idea how can I do this ?
- Anonymous3 years ago
Hi Crazydog ,
1. This is not possible if columns [Col B] and [Col C] are calculated columns. Since the nature of a calculated column is that it is only recomputed when memory is flushed, it does not interact with the slicer once the computation is complete.
2. If they are measures, please try:Measure = VAR _col_a = MAX('Table'[Col A]) VAR _value = SELECTEDVALUE('Table2'[Col B]) VAR _result = IF(_col_a = 0.5 , _value , MAX('Table'[Col B])) RETURN _resultMeasure 2 = MAX('Table'[Col A])*[Measure]
Attached PBIX file for reference.Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
3 Replies
- amitchandak
Super User
Crazydog , Based on what I got . Assume you have independent table with list of columns -ColumnList
You need a new measure
Sumx(Table, Switch(selectedvalues(ColumnList[Column List])
"Column2", [Column2] *[Column3],
"Column4", [Column2] *[Column3],
[Column2] *[Column3]) )
- AnonymousNot applicable
Hi Crazydog ,
1. This is not possible if columns [Col B] and [Col C] are calculated columns. Since the nature of a calculated column is that it is only recomputed when memory is flushed, it does not interact with the slicer once the computation is complete.
2. If they are measures, please try:Measure = VAR _col_a = MAX('Table'[Col A]) VAR _value = SELECTEDVALUE('Table2'[Col B]) VAR _result = IF(_col_a = 0.5 , _value , MAX('Table'[Col B])) RETURN _resultMeasure 2 = MAX('Table'[Col A])*[Measure]
Attached PBIX file for reference.Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
- CrazydogFrequent Visitor
Thanks for this ! Is there any way I can input col B ? and col c will perform calc for that value... cos I am going have over 1000 values for col B.