Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
78 | |
52 | |
39 | |
35 |
User | Count |
---|---|
94 | |
79 | |
51 | |
47 | |
47 |