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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rush
Helper V
Helper V

Tag all employee records with Active if their Staff Stage is equal to Staff

Hi

 

I have an employment table with mutiple records whereby for each individual they are tagged with either Staff , Ex-staff  or Starting.

I would like to create a measure or column that will identify if an individual is tagged with Staff then the rest of his records should be tagged with Active.

Please see image below for the data that I have where I would like to replicate the last column.

Thanks.Active Tag.PNG

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@rush 

 

Try this as a column

 

=
IF (
    CONTAINS (
        FILTER ( TABLENAME, TableName[PersonID] = EARLIER ( TableName[PersonID] ) ),
        [Staff Stage], "Staff"
    ),
    "Active",
    "Inactive"
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@rush 

 

Try this as a column

 

=
IF (
    CONTAINS (
        FILTER ( TABLENAME, TableName[PersonID] = EARLIER ( TableName[PersonID] ) ),
        [Staff Stage], "Staff"
    ),
    "Active",
    "Inactive"
)

Regards
Zubair

Please try my custom visuals

@Zubair_Muhammad  Thanks a lot.

It is working well.

 

Much appreciated.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.