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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.