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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
BIuser09
Helper I
Helper I

Chart not existing in PBI. Is available in Excel

Had to post this here in the first place.

 

table below should give this chart in Power BI but in standard 'Line and stacked column chart' I cannot choose x axis for measure 1. Trendline on secondary axis is possible in PBI but that is not the result a I get in Excel custom chart.

I would like to add 'measure1' as a line or marker connected to the data on the FIRST Y axis. NOT the 2nd Y axis

Does this chart also exists in Power BI ?

 

data:

 123456789101112
dataA10153520454053520454060
dataB201535105551035555035
dataC504055406065554070656540
running total80150275345455565630715840100511601295
measure16570858580909095859090100

 

 

Chart in Excel

 

BIuser09_0-1747639933657.png

 

 

1 ACCEPTED SOLUTION
v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

You can try below options that will help to solve the issue:

Option 1: Normalize Running Total
If measure1 is important visually, and running total skews the axis:

Scale running total to a percentage or index (e.g., 0–100):

RunningTotalNormalized =
VAR MaxRT =
MAXX(
ALL('Sheet1'[Month]),
[running total]
)
RETURN
DIVIDE([running total], MaxRT, 0) * 100
This way, both measure1 and running total sit on comparable scales and you can still plot them together as lines.

Make sure to replace 'Sheet1' with your TableName.

Option 2: Use Deneb (Vega-Lite / JSON) Custom Visual

 Deneb is a custom visual that allows full chart control (like Excel or Tableau), including:

Multiple Y axes

Assigning axes independently to series

Customizing chart layout, style, interaction

You can Install Deneb from AppSource in Power BI using below link:

Deneb: Declarative Visualization in Power BI

 

If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it! 

Thank you.

 

View solution in original post

8 REPLIES 8
v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please accept it as a solution and give it a 'Kudos' so other community members with similar problems can find a solution faster.

Thank you.

v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.

Thank you.

v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

You can try below options that will help to solve the issue:

Option 1: Normalize Running Total
If measure1 is important visually, and running total skews the axis:

Scale running total to a percentage or index (e.g., 0–100):

RunningTotalNormalized =
VAR MaxRT =
MAXX(
ALL('Sheet1'[Month]),
[running total]
)
RETURN
DIVIDE([running total], MaxRT, 0) * 100
This way, both measure1 and running total sit on comparable scales and you can still plot them together as lines.

Make sure to replace 'Sheet1' with your TableName.

Option 2: Use Deneb (Vega-Lite / JSON) Custom Visual

 Deneb is a custom visual that allows full chart control (like Excel or Tableau), including:

Multiple Y axes

Assigning axes independently to series

Customizing chart layout, style, interaction

You can Install Deneb from AppSource in Power BI using below link:

Deneb: Declarative Visualization in Power BI

 

If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it! 

Thank you.

 

v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

Thank you for the Response..!!

I have replicated the chart in Powerbi with sample data.

You can go through the attached .pbix file for your reference.

 

If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it! 

Thank you.

thanks for sending pbix but issue is same.

I cannot add 'running total' into graph, axe X is not possible (stacked), and axe Y is also not possible because of 'measure1' is in it and scale of numbers of 'measure1' and 'running total' are too different. It ruins the graph.

In excel it is possible.

v-venuppu
Community Support
Community Support

Hi @BIuser09 ,

Thank you for reaching out to Microsoft Fabric Community.

Yes, you can build this chart in Power BI.

Use a Line and Stacked Column Chart, place dataA,dataB,dataC in column values, and measure1 in line values. Then:

  • In Format pane - Turn off secondary Y-axis.
  • This keeps all series on the same (primary) Y-axis, just like Excel.

If your data is in wide format, unpivot it first in Power Query to make things easier.

If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it! 

Thank you.

 

Thanks for your answer.

But I still can't replicate the graph from Excel.

I have to delete 'running total' from graph otherwise large scale of this measure ruins the graph. Unpivoting won't help, data is what it is.

Really not another graph is suitable in Power BI ?

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.