Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I am looking to add a dynamic bar and line chart to a report. It works now however, when bookings is selected it displays the sales discount line. I am looking for if bookings are selected only display the bars. If sales are selected show both Sales and the line
Bare and Line
Thank you in advance for the help
Selected Meassure =
SWITCH(
VALUES(zSlicer[Column1]),
"Sales",'[Sales],
"Bookings",[Bookings]
)
Solved! Go to Solution.
Hi, @MrNoob
According to your requirement, you can try this measure to replace [Sales] in line chart:
Measure =
SWITCH(SELECTEDVALUE('ZSilcer'[Column1]),
"Bookings",BLANK(),
"Sales",MAX('Sales'[Sales]))
You can also download my pbix file here:
And you can get what you want, like this:
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @MrNoob
According to your requirement, you can try this measure to replace [Sales] in line chart:
Measure =
SWITCH(SELECTEDVALUE('ZSilcer'[Column1]),
"Bookings",BLANK(),
"Sales",MAX('Sales'[Sales]))
You can also download my pbix file here:
And you can get what you want, like this:
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I actullay just tried this before checking this message and it worked :). Thank you!!!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
65 | |
42 | |
42 |
User | Count |
---|---|
46 | |
38 | |
28 | |
26 | |
26 |