The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,I have created 4 measures
1.sales A
2.sales B
3.Profit A
4.Profit B
Now i need to display these measures in line graph.
Requirement:Slicer contains two fields 1.Sales 2.Profit
1.when i select Sales in slicer i need to display sales A and Sales B measures in line graph
2.when i select Profit in slicer i need to display Profit A and Profit B measures in line graph.
tried with switch condition but its not working please help me with this scenario
Solved! Go to Solution.
@Anonymous , You need to create two measures
A = Switch(SELECTEDVALUE(Slicer[Slicer]) ,
"Sales", [Sales A] ,
"Profit", [Profit A]
)
B= Switch(SELECTEDVALUE(Slicer[Slicer]) ,
"Sales", [Sales B] ,
"Profit", [Profit B]
)
use both in a visual
refer if needed
measure slicer
https://www.youtube.com/watch?v=b9352Vxuj-M
https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/500115
@Anonymous , You need to create two measures
A = Switch(SELECTEDVALUE(Slicer[Slicer]) ,
"Sales", [Sales A] ,
"Profit", [Profit A]
)
B= Switch(SELECTEDVALUE(Slicer[Slicer]) ,
"Sales", [Sales B] ,
"Profit", [Profit B]
)
use both in a visual
refer if needed
measure slicer
https://www.youtube.com/watch?v=b9352Vxuj-M
https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/500115
Hi amit,thank you so much.your solution is working.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
107 | |
77 | |
71 | |
47 | |
39 |
User | Count |
---|---|
136 | |
108 | |
70 | |
64 | |
57 |