The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello Power Bi community
I have this challenge to find average compensation per month, and the averaging of each month only based on the current year
(This is just a sum dax. [Total Compensation] = SUM(amount))
Example, for 2021:
first 2 month has 1 average based of the first 2 month
(867+991)/2 = 929
First 3 month:
(867+991+919)/3 = 925
etc.
Hi @Anonymous .
If your date column contains data in MM-YYYY format, then I would recommend you to first create a Month calculated column using =TEXT([Date Column],”MM”) and then use the below DAX,
Avg. Compensation=
AVERAGEX(VALUES(DIM_DATE[MM-YYYY]),
[Total Compensation])
Else you can convert the same column in MM format and perform the DAX.
Regards,
Sanket Bhagwat.
If this post helps, then please consider iit as Accept as the solution.
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
5 |
User | Count |
---|---|
24 | |
20 | |
13 | |
9 | |
7 |