Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I want to add an average line in a bar chart visual which looks like below -
Legends - Year (2023 and 2024)
condition is it should only diplay the average value for year 2023 and it should display both years data as well.
is ther any way we can achieve this?
Solved! Go to Solution.
Hi @Alice08 ,
1. Create a measure, write an expression, and calculate the desired average. The following expression calculates the average monthly sales in 2013.
Measure =
VAR _sum = CALCULATE(SUM(financials[Sales]),FILTER(ALL('financials'),'financials'[Year] = "2013"))
VAR _num = CALCULATE(DISTINCTCOUNT('financials'[Month Number]),FILTER(ALL('financials'),'financials'[Year] = "2013"))
RETURN
DIVIDE(_sum,_num)
2. Click the magnifying glass in the visualizations pane->constant line->add line.
line -> value -> fx, put the created measure value.
3. The final result is shown in the figure below.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Alice08 ,
1. Create a measure, write an expression, and calculate the desired average. The following expression calculates the average monthly sales in 2013.
Measure =
VAR _sum = CALCULATE(SUM(financials[Sales]),FILTER(ALL('financials'),'financials'[Year] = "2013"))
VAR _num = CALCULATE(DISTINCTCOUNT('financials'[Month Number]),FILTER(ALL('financials'),'financials'[Year] = "2013"))
RETURN
DIVIDE(_sum,_num)
2. Click the magnifying glass in the visualizations pane->constant line->add line.
line -> value -> fx, put the created measure value.
3. The final result is shown in the figure below.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Use the "Line and Clustered Column Chart" and provide your own measure for the 2023 average (as the line)
Can you elaborate please?
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
121 | |
77 | |
46 | |
44 | |
34 |
User | Count |
---|---|
183 | |
84 | |
69 | |
48 | |
45 |