Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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.
Solved! Go to Solution.
Try this as a column
=
IF (
CONTAINS (
FILTER ( TABLENAME, TableName[PersonID] = EARLIER ( TableName[PersonID] ) ),
[Staff Stage], "Staff"
),
"Active",
"Inactive"
)
Try this as a column
=
IF (
CONTAINS (
FILTER ( TABLENAME, TableName[PersonID] = EARLIER ( TableName[PersonID] ) ),
[Staff Stage], "Staff"
),
"Active",
"Inactive"
)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 38 | |
| 31 | |
| 27 |