March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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
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!
User | Count |
---|---|
93 | |
87 | |
86 | |
75 | |
49 |
User | Count |
---|---|
164 | |
149 | |
101 | |
73 | |
56 |