This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
I have created an measure to calculate the headcount monthly based on data range criterias, for each month the result is correct. However when I display the figures in a table split by month the total is wrong.
The return from PBI
| Month | HC_month |
| jan | 505 |
| fev | 505 |
| mar | 498 |
| abr | 519 |
| mai | 515 |
| jun | 516 |
| jul | 521 |
| ago | 534 |
| set | 559 |
| out | 555 |
| nov | 568 |
| dez | 565 |
| TOTAL | 5919 |
The right amount for the total should be
| Month | HC_month |
| jan | 505 |
| fev | 505 |
| mar | 498 |
| abr | 519 |
| mai | 515 |
| jun | 516 |
| jul | 521 |
| ago | 534 |
| set | 559 |
| out | 555 |
| nov | 568 |
| dez | 565 |
| TOTAL | 6360 |
That's my measure code
HC_MONTH = COUNTROWS(
FILTER(Payroll,
(Payroll[Payroll nb]<>376)&& (Payroll[Payroll nb]<>377)&& (Payroll[Payroll nb]<>445) //exclude 3 specifics employees Expat
&&'Payroll'[Most Recent Hire Date] <= MAX (Calendar[Date])
&& (ISBLANK ('Payroll'[Administrative End Date]) || 'Payroll'[Administrative End Date] >= MAX (Calendar[Date]))
)
)
Any thought that what is wrong on my measure code, or how can I improve it ?
I have attached an example of the worksheet that is feeding my database on PowerBI. Example
Solved! Go to Solution.
@Anonymous
Change your formula to this one:
HC_MONTH =
SUMX (
VALUES ( 'Calendar'[Month Name] ),
CALCULATE (
COUNTROWS (
FILTER (
Payroll,
( Payroll[Payroll nb] <> 376 )
&& ( Payroll[Payroll nb] <> 377 )
&& ( Payroll[Payroll nb] <> 445 ) //exclude 3 specifics employees Expat
&& 'Payroll'[Most Recent Hire Date] <= MAX ( Calendar[Date] )
&& (
ISBLANK ( 'Payroll'[Administrative End Date] )
|| 'Payroll'[Administrative End Date] >= MAX ( Calendar[Date] )
)
)
)
)
)
@Anonymous
Change your formula to this one:
HC_MONTH =
SUMX (
VALUES ( 'Calendar'[Month Name] ),
CALCULATE (
COUNTROWS (
FILTER (
Payroll,
( Payroll[Payroll nb] <> 376 )
&& ( Payroll[Payroll nb] <> 377 )
&& ( Payroll[Payroll nb] <> 445 ) //exclude 3 specifics employees Expat
&& 'Payroll'[Most Recent Hire Date] <= MAX ( Calendar[Date] )
&& (
ISBLANK ( 'Payroll'[Administrative End Date] )
|| 'Payroll'[Administrative End Date] >= MAX ( Calendar[Date] )
)
)
)
)
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 27 | |
| 23 | |
| 19 |