Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
jbrooi
Helper I
Helper I

Follow status in a selected month and status change in the following months

Hi guys, can't seem to find the solution for this scenario. 

 

I want to filter a specific month, let's say Feb 2023. I'd like to see how many people have a status "Nieuw" in that month, and from that group of people how many have a status "Trainee" in that or any following month. I want to display that in a timeline, with a value for "Nieuw" in Feb 2023 and values for "Trainee" in Feb, March, April and so on. 

jbrooi_0-1709206319551.png

How to calculate the measures for this?

I'm stuck on specifying the "Nieuw" group in Feb 2023 in combination with showing the "Trainee" statuses in the other months. 

Thanks! 

 

I have a change table for the people and a connected Date table. The change table is like this:

KandidaatIDStatusstatusIDIngangsdatum
75041Nieuw751-2-2023 00:00
75042Nieuw751-2-2023 00:00
75043Nieuw751-2-2023 00:00
75044Nieuw751-2-2023 00:00
75045Nieuw751-2-2023 00:00
75046Nieuw751-2-2023 00:00
75046Trainee911915-2-2023 00:00
75047Nieuw751-2-2023 00:00
75048Nieuw752-2-2023 00:00
75049Nieuw752-2-2023 00:00
75050Nieuw752-2-2023 00:00
75051Nieuw753-2-2023 00:00
75051Trainee911915-2-2023 00:00
75052Nieuw753-2-2023 00:00
75053Nieuw753-2-2023 00:00
75054Nieuw753-2-2023 00:00
75055Nieuw753-2-2023 00:00
75056Nieuw753-2-2023 00:00
75057Nieuw755-2-2023 00:00
75058Nieuw755-2-2023 00:00
75059Nieuw755-2-2023 00:00
75060Nieuw756-2-2023 00:00
75061Nieuw756-2-2023 00:00
75062Nieuw756-2-2023 00:00
75063Nieuw756-2-2023 00:00
75064Nieuw756-2-2023 00:00
75064Trainee911914-2-2023 00:00
75065Nieuw756-2-2023 00:00
75066Nieuw756-2-2023 00:00
75067Nieuw756-2-2023 00:00
75068Nieuw756-2-2023 00:00
75068Trainee911911-4-2023 00:00
75069Nieuw756-2-2023 00:00
75070Nieuw756-2-2023 00:00
75071Nieuw757-2-2023 00:00
75072Nieuw757-2-2023 00:00
75073Nieuw757-2-2023 00:00
75074Nieuw757-2-2023 00:00
75074Trainee911913-2-2023 00:00
75075Nieuw757-2-2023 00:00
75076Nieuw757-2-2023 00:00
75077Nieuw757-2-2023 00:00
75078Nieuw757-2-2023 00:00
75078Trainee91199-3-2023 00:00
75079Nieuw757-2-2023 00:00
75079Trainee911915-2-2023 00:00
75080Nieuw757-2-2023 00:00
75081Nieuw757-2-2023 00:00
75082Nieuw758-2-2023 00:00
75083Nieuw758-2-2023 00:00
75084Nieuw758-2-2023 00:00
75085Nieuw758-2-2023 00:00
75086Nieuw758-2-2023 00:00
75087Nieuw758-2-2023 00:00
75088Nieuw758-2-2023 00:00
75088Trainee911921-2-2023 00:00
75089Nieuw758-2-2023 00:00
75090Nieuw758-2-2023 00:00
75090Trainee911913-2-2023 00:00
75091Nieuw758-2-2023 00:00
75092Nieuw758-2-2023 00:00
75093Nieuw758-2-2023 00:00
75094Nieuw759-2-2023 00:00
75095Nieuw759-2-2023 00:00
75096Nieuw759-2-2023 00:00
75097Nieuw7510-2-2023 00:00
75098Nieuw7510-2-2023 00:00
75098Trainee911915-2-2023 00:00
1 ACCEPTED SOLUTION
jbrooi
Helper I
Helper I

Ah found it, didn't apply the ALL function in the right way. This gives me the right result:

Trainees from selected month = 

Trainees uit geselecteerde maand =
VAR NieuweKandidaten =
    CALCULATETABLE(
        VALUES('EmployeeChange'[KandidaatID]),
        'EmployeeChange'[Status] = "Nieuw"
    )
RETURN
    CALCULATE(
        COUNTROWS('EmployeeChange'),
        ALL(EmployeeChange),
        'EmployeeChange'[Status] = "Trainee",
        'EmployeeChange'[KandidaatID] IN NieuweKandidaten
    )

View solution in original post

2 REPLIES 2
jbrooi
Helper I
Helper I

Ah found it, didn't apply the ALL function in the right way. This gives me the right result:

Trainees from selected month = 

Trainees uit geselecteerde maand =
VAR NieuweKandidaten =
    CALCULATETABLE(
        VALUES('EmployeeChange'[KandidaatID]),
        'EmployeeChange'[Status] = "Nieuw"
    )
RETURN
    CALCULATE(
        COUNTROWS('EmployeeChange'),
        ALL(EmployeeChange),
        'EmployeeChange'[Status] = "Trainee",
        'EmployeeChange'[KandidaatID] IN NieuweKandidaten
    )
amitchandak
Super User
Super User

@jbrooi , Create a disconnected date table

 

Measure =
Var _sel = Eomonth(maxx(allselected(Date), Date[Date]), 0)
return
countrow(filter(Table, Table[Status]="Nieuw" && eomonth(Table[Ingangsdatum],0)= _max)) + countrow(filter(Table, Table[Status]="Trainee" && eomonth(Table[Ingangsdatum],0)> _max))

 

Need of an Independent/disconnected Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.