Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
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 January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
79 | |
47 | |
45 | |
32 |
User | Count |
---|---|
172 | |
90 | |
66 | |
46 | |
45 |