Forum Discussion
Bnjmnrod
3 years agoRegular Visitor
Line chart visual with two lines based on two slicers
Hello! (I am quite new to Power BI) I need to create a line chart to compare the revenue of customers. I've divided the report page in two areas, each for a customer. So on the left I have a sli...
- 3 years ago
Hi,
Please see this tutorial...
If I understood you correctly,
this is exactly your scenario:https://www.youtube.com/watch?v=O0VsTLDTjss
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
pratyashasamal
3 years agoMemorable Member
Hi Bnjmnrod ,
In each line measure you have to check if that value is selected or not
example
ABC new = If("ABC" in allselected(Slicer[Slicer]) , [ABC], blank())
DEF new = If("DEF " in allselected(Slicer[Slicer]) , [DEF ], blank())
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C