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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
ashmitp869
Post Partisan
Post Partisan

Need help in Combo Chart - Visual

Hi ,

 

Help me with the Combo Chart.
I have a sample chart requirement .

ashmitp869_0-1741752276000.png


I have data set like

ashmitp869_2-1741752767403.png

 



I have used Line and Stacked Column Chart. But how can I show the Mesh Roof - Cummulative in Line axis and Mesh Roof is Column


ashmitp869_1-1741752367868.png

Please suggest

1 ACCEPTED SOLUTION

Then prefer using measure to calculate sum of value and cumilative value separatly using measure
this will solve your problem

View solution in original post

6 REPLIES 6
Vijay_Chethan
Super User
Super User

You can use measures to calculate sum of value for two mesh categories
add sum of value in column field and measure to calculate cumilative(if u dont already have a column for it), and add it in line axis, this will give you the desired combo chart, if you are worried about legend, you will get legend considering column field and line field, just name them in visual accordingly

please mark this as solution if it helps

govind_021
Super User
Super User

Hi @ashmitp869 
you need to create a Mesh Roof - Cummulative dax measure using DAX 
here is the sample formula
Cumulative Total =
VAR SelectedDate = MAX('Date'[Date])
RETURN
CALCULATE(
SUM('Sales'[Amount]),
FILTER(
ALL('Date'),
'Date'[Date] <= SelectedDate
)

and use this measure in Line y axis section of the visual.


Best Regards
Govind Sapkade ( Microsoft Certified Data Analyst , PL 300 Certified , MS Fabric Enthusiast)
Let's Connect
Linkdin - www.linkedin.com/in/govind-sapkade-845104225
Youtube - http://www.youtube.com/@govind_dataanalyst
)

Hi @govind_021 
But I already have the cummlative value in the Value column

ashmitp869_0-1741754075792.png

 

 

With the measures you provided , its giving me the result below

ashmitp869_1-1741754334098.png

 

Provided you the sample file
https://github.com/suvechha/samplepbi/blob/main/p6.pbix

Hi @ashmitp869 
attached the pbix file with solution , please have a look
https://drive.google.com/file/d/1pOb8XT5WWD6nmO8irls0dVR7a5BEc6BY/view?usp=drive_link

Best Regards
Govind Sapkade ( Microsoft Certified Data Analyst , PL 300 Certified , MS Fabric Enthusiast)
Let's Connect
Linkdin - www.linkedin.com/in/govind-sapkade-845104225
Youtube - http://www.youtube.com/@govind_dataanalyst

Unable to get the pbix file. Access denied

Then prefer using measure to calculate sum of value and cumilative value separatly using measure
this will solve your problem

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.