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
JensHN
Frequent Visitor

Select jobs based on their history

Hi,

 

my datamodel contains the two tables "Jobs" and "Histroy", connected by 1:n.

 

connection.jpg

 

The "Jobs" table has a simple ID and Name column.

The "History" tbale has an ID, Job ID (based on Jobs table), Status (each status has a specific number) and a Timestamp when the job changed the status.

 

jobs-table.jpghistory-table.jpg

 

My problem is, how do I select jobs based on their history.

 

For example:

I want to know how many jobs went from status 1 to 3 without 2. In the sample data it´s only Job C.

How many jobs are in status 3 and have not been status 2 any time before. In the sample data it´s no Job.

1 ACCEPTED SOLUTION

Hi @v-cherch-msft

 

thank you for your fast replay.

Your shown solution works well for the two named szenarios. As always, the reality is unfortunately much more complex. The requirements to filter a specific history szenario can change daily. Creating a DAX formula is to complex for the enduser.

 

My idea is to create a calculated filed with the status numbers. On the visualisation the enduser can apply a simple "contains filter" on this field.

Jobhistory = CONCATENATEX(RELATEDTABLE(History); History[Status];)

jobhistory.jpg

View solution in original post

2 REPLIES 2
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @JensHN

 

You may create measures to get the values. For example:

NextStatus =
CALCULATE (
    MAX ( History[Status] ),
    FILTER (
        ALLEXCEPT ( History, History[Job ID] ),
        History[ID]
            = MAX ( History[ID] ) + 1
    )
)
Status1-3 = COUNTROWS(FILTER(History,History[Status]=1&&[NextStatus]=3)) //how many jobs went from status 1 to 3 without 2
HasStatus2 =
VAR a =
    MAXX ( FILTER ( ALL ( History ), History[Status] = 3 ), History[ID] )
VAR b =
    CALCULATETABLE (
        VALUES ( History[Status] ),
        FILTER ( History, History[ID] < a )
    )
RETURN
    IF ( 2 IN b, 1 )
InStatus3 =
VAR a =
    MAXX ( FILTER ( ALL ( History ), History[Status] = 3 ), History[ID] )
RETURN
    IF (
        [HasStatus2] = BLANK (),
        CALCULATE ( DISTINCTCOUNT ( Jobs[Name] ), FILTER ( History, History[ID] < a ) )
    )  //How many jobs are in status 3 and have not been status 2 any time before

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-cherch-msft

 

thank you for your fast replay.

Your shown solution works well for the two named szenarios. As always, the reality is unfortunately much more complex. The requirements to filter a specific history szenario can change daily. Creating a DAX formula is to complex for the enduser.

 

My idea is to create a calculated filed with the status numbers. On the visualisation the enduser can apply a simple "contains filter" on this field.

Jobhistory = CONCATENATEX(RELATEDTABLE(History); History[Status];)

jobhistory.jpg

Helpful resources

Announcements
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.