Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a Headcount Running Total Measure. Which is getting it's data from an employee history table. Meaning there could be more than one entry for an employee. This table has a relationship with the date table on the Employee Start Date.
Employee Running Total =
VAR MaxDate = MAX('DIM Date'[Date])
VAR MinDate = MIN('DIM Date'[Date])
RETURN
CALCULATE (
[Employee Base],
KEEPFILTERS('Employee'[ValidFromNew] <= MaxDate &&
'Employee'[ValidTo] >= MaxDate),
ALL('DIM Date'))
I have the requirement to find the Average of this number on speacific date. I need to have the result as below in red. Jan is divided by 1, Feb by 2 and so on.
Month/Year | HC Running | HC Running Avg. |
Jan/2023 | 100 | 100 |
Feb/2023 | 120 | 110 |
Mar/2023 | 115 | 111,6 |
I have tried, but the result isn't what I want
Avg. Running Total per Month
AVERAGEX(
VALUES(
'DIM DATE'[Month/Year]),
[Employee Running Total])
Any ideas?
Solved! Go to Solution.
I have solved it with help from https://www.sqlbi.com/articles/rolling-12-months-average-in-dax/ @marcorusso
i adapted it to fit my needs
Avg. Headcount =
VAR NumOfMonths = Max('DIM Date'[Month])
VAR LastCurrentDate =
MAX ( 'DIM Date'[Date] )
VAR Period =
DATESINPERIOD ( 'DIM Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
CALCULATE (
AVERAGEX (
VALUES ( 'DIM Date'[Month-Year] ),
[Employee Running Total]
),
Period
)
VAR FirstDateInPeriod = MINX ( Period, 'DIM Date'[Date] )
VAR LastDate = MAX ( 'Employee'[ValidFromNew])
RETURN
IF ( FirstDateInPeriod <= LastDate, Result )
.
I have solved it with help from https://www.sqlbi.com/articles/rolling-12-months-average-in-dax/ @marcorusso
i adapted it to fit my needs
Avg. Headcount =
VAR NumOfMonths = Max('DIM Date'[Month])
VAR LastCurrentDate =
MAX ( 'DIM Date'[Date] )
VAR Period =
DATESINPERIOD ( 'DIM Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
CALCULATE (
AVERAGEX (
VALUES ( 'DIM Date'[Month-Year] ),
[Employee Running Total]
),
Period
)
VAR FirstDateInPeriod = MINX ( Period, 'DIM Date'[Date] )
VAR LastDate = MAX ( 'Employee'[ValidFromNew])
RETURN
IF ( FirstDateInPeriod <= LastDate, Result )
.
'YourTable'[DateColumn] & 'YourTable'[MonthColumn] implies Your Date dimension table.
'YourTable'[ValueColumn] implies your Fact Table from where numeric values you want to calculate.
Average Of Running Total =
DIVIDE (
SUMX (
ADDCOLUMNS (
VALUES ( 'YourTable'[DateColumn] ),
"RunningTotal",
CALCULATE (
SUM ( 'YourTable'[ValueColumn] ),
FILTER (
ALLSELECTED ( 'YourTable'[DateColumn] ),
'YourTable'[DateColumn] <= EARLIER ( 'YourTable'[DateColumn] )
)
)
),
[RunningTotal]
),
COUNTROWS ( VALUES ( 'YourTable'[MonthColumn] ) )
)
Please try this code.
Unfortunaetly it doesn't work. Context is Year = 2023. I want to be able to Show in March the average of Jan, Feb & Mar.
Measure I used.
Headcount Avg. =
DIVIDE (
SUMX (
ADDCOLUMNS (
VALUES ( 'DIM Date'[Date]),
"RunningTotal",
CALCULATE (
DISTINCTCOUNT('Employee'[EmployeeID]),
FILTER (
ALLSELECTED ( 'DIM Date' ),
'DIM Date'[Date] <= EARLIER ('DIM Date'[Date])
)
)
),
[RunningTotal]
),
COUNTROWS ( VALUES ('DIM Date'[Period] ) )
)
Thanks for replying
I have tried replacing "YourTable", but I am not getting the results I want.
When you mention Your Table, do you mean DIM Date or Employee?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
84 | |
82 | |
67 | |
49 |
User | Count |
---|---|
135 | |
111 | |
100 | |
65 | |
62 |