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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors