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.
I have been using the below formula to calculate my fired employees but it is offsetting it by a month. Can anyone help me shift it properly so that it display on the month they were fired rather than the month after?
(August should show 8 and September should show 3)
Fired =
VAR currDate =
MAX ( Sheet1[Date] )
VAR currList =
CALCULATETABLE (
VALUES ( Sheet1[EmployeeID] ),
FILTER (
ALLSELECTED ( Sheet1 ),
[Date] >= DATE ( YEAR ( currDate ), MONTH ( currDate ), 1 )
&& [Date]
<= DATE ( YEAR ( currDate ), MONTH ( currDate ) + 1, 1 )
- 1
)
)
VAR prevList =
CALCULATETABLE (
VALUES ( Sheet1[EmployeeID] ),
FILTER (
ALLSELECTED ( Sheet1 ),
[Date]
>= DATE ( YEAR ( currDate ), MONTH ( currDate ) - 1, 1 )
&& [Date]
<= DATE ( YEAR ( currDate ), MONTH ( currDate ), 1 ) - 1
)
)
RETURN
COUNTROWS ( EXCEPT ( prevList, currList ) )
+ IF ( DISTINCTCOUNT ( Sheet1[EmployeeID] ) <> 0, 0, BLANK () )
Hi @Anonymous ,
Could you please share your sample data and excepted result to me if you don't have any confidential Information. Please upload your files to One Drive and share the link here.
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 | |
| 26 | |
| 23 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 65 | |
| 41 | |
| 28 | |
| 22 | |
| 22 |