The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello all,
I have an excel data shown above where Percentage is the measure which i have calculated in Power Bi.
Now, I want to calculate quarterly average of percentage column.
Is there any way to calculate this ?
Right now, this is the one year of all the data; I have many years data and i want to calculate average accordingly.
I have not Date Dimension table, only one date column shown above(First Date of the month).
I saw other post of this forum ragarding this but they have used Date Key table; but i don't have that.
Please help me to get out from this.
Thanks in advance.
Solved! Go to Solution.
Hi @hemal_kanjia,
In your resource table, please create a calculated column to get quarter.
quarter = FORMAT(Test[Date],"Q")
Please see the screenshot below, which shows my sample table and calculated column result.
Then create the percentage and average by creating measures. using the formulas below.
Percentage = DIVIDE(SUM(Test[value]),SUMX(ALL(Test),Test[value])) Avg% = AVERAGEX(ALLEXCEPT(Test,Test[quarter]),Test[Percentage])
Fianlly, I create a table visual, select the date, quarter and two measure to disply as follows.
Best Regards,
Angelia
Hi @hemal_kanjia,
In your resource table, please create a calculated column to get quarter.
quarter = FORMAT(Test[Date],"Q")
Please see the screenshot below, which shows my sample table and calculated column result.
Then create the percentage and average by creating measures. using the formulas below.
Percentage = DIVIDE(SUM(Test[value]),SUMX(ALL(Test),Test[value])) Avg% = AVERAGEX(ALLEXCEPT(Test,Test[quarter]),Test[Percentage])
Fianlly, I create a table visual, select the date, quarter and two measure to disply as follows.
Best Regards,
Angelia
Hi, @v-huizhn-msft , thanks. that's a geat help. I am able to follow through the steps. However, I have a DateTable and had active relatinship wit the test table. This Average DAX:
Can we use the Medianx function similar to Averagex?
Avg% = AVERAGEX(ALLEXCEPT(Test,Test[quarter]),Test[Percentage])
Median = MedianX(ALLEXCEPT(Test,Test[quarter]),Test[Percentage])
Try this,
Avg % = CALCULATE(AVERAGE(Table1[Percentage]),FILTER(Table1,ENDOFQUARTER(Table1[Date])))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
80 | |
75 | |
52 | |
50 |
User | Count |
---|---|
132 | |
124 | |
78 | |
64 | |
61 |