March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
Is there a way to add automatically on average line per month on a graph?
I have in this example a cost per site per month (5 sites ) and i would like to add a line with the average monthly cost
Thanks in advance for your help
Solved! Go to Solution.
Hi @miguesnet ,
I have created a sample for your reference, please check the following steps as below.
1. Create a calculated table as below and make it related to our fact table.
Table 2 = UNION(VALUES('Table (2)'[category]),{"avg"})
2. Then we can achieve that by a measure.
Measure =
IF (
MAX ( 'Table 2'[category] ) = "avg",
CALCULATE (
AVERAGE ( 'Table (2)'[value] ),
ALLEXCEPT ( 'Table (2)', 'Table (2)'[date] )
),
SUM ( 'Table (2)'[value] )
)
For more details, please check the pbix as attached.
You can have like using Analytics . But in this case you need a measure like
Calculate([Measure],All(Site[Site]))
Also refer :https://docs.microsoft.com/en-us/power-bi/desktop-analytics-pane
if you need more help make me @
Appreciate your Kudos.
Hi,
Thanks for your answer.
I created a new measure as you describe but i can not combine both measures on the same graph. It must be possible
Hi @miguesnet ,
I have created a sample for your reference, please check the following steps as below.
1. Create a calculated table as below and make it related to our fact table.
Table 2 = UNION(VALUES('Table (2)'[category]),{"avg"})
2. Then we can achieve that by a measure.
Measure =
IF (
MAX ( 'Table 2'[category] ) = "avg",
CALCULATE (
AVERAGE ( 'Table (2)'[value] ),
ALLEXCEPT ( 'Table (2)', 'Table (2)'[date] )
),
SUM ( 'Table (2)'[value] )
)
For more details, please check the pbix as attached.
March Release has a multi-axis line chart. And I remember that bar -line was only splitting bar. Check and try
https://powerbi.microsoft.com/en-us/blog/power-bi-desktop-march-2020-feature-summary/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
132 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |