Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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!!!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 21 | |
| 20 | |
| 13 |
| User | Count |
|---|---|
| 59 | |
| 53 | |
| 40 | |
| 31 | |
| 26 |