Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
MrNoob
Helper II
Helper II

Dynamic Bar and Line chart

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 LineBare and Line

 

Thank you in advance for the help

 

Selected Meassure = 
SWITCH( 
    VALUES(zSlicer[Column1]),

    "Sales",'[Sales],

    "Bookings",[Bookings]
)

 

 

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

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:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/xiaoxin_qiuyunus_onmicrosoft_com/Efg-WCMM5CFOmbXuT...

 

And you can get what you want, like this:

v-robertq-msft_0-1603159744704.png

 

v-robertq-msft_1-1603159744708.png

 

 

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.

View solution in original post

2 REPLIES 2
v-robertq-msft
Community Support
Community Support

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:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/xiaoxin_qiuyunus_onmicrosoft_com/Efg-WCMM5CFOmbXuT...

 

And you can get what you want, like this:

v-robertq-msft_0-1603159744704.png

 

v-robertq-msft_1-1603159744708.png

 

 

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!!! 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.