Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All
I have a scenario relating to a Staff List, i have a list of staff that will be updated each month with the complete staff list as at that point in time. I categorise this with a DataDate field which in this case will be the 1st day of each month.
My scenario is that i want to be able to create either a Calculated column or measure that will tell me if that person transfered into that CostCentre for that month. For example in the list below when looking at the data date of 1/1/2018 there are 6 staff 3 in cost centre ABC and 3 in DEF. In the following month data date is 1/2/2018 we can see that there is now only 2 staff in ABC and 4 in DEF, i want to be able to show a flag or value that shows Alan Smith has transfered into cost centre DEF by looking back at the pervious month and seeing that his CostCentre was not equal to DEF but was actually ABC.
I thought i could maybe user FILTER or SEARCH but am struggling to get the correct results. This is a cutdown version of my staff list in order to simplify this, i have this data loaded in power bi desktop.
Any help or advice is greatly appreciated
Thanks
Eddie
Solved! Go to Solution.
You may add a calculated column as shown below.
Flag =
VAR prev =
LOOKUPVALUE (
Table1[CostCentre],
Table1[DataDate], DATE ( YEAR ( Table1[DataDate] ), MONTH ( Table1[DataDate] ) - 1, 1 ),
Table1[StaffNumber], Table1[StaffNumber]
)
RETURN
IF ( ISBLANK ( prev ) || Table1[CostCentre] = prev, 0, 1 )
You may add a calculated column as shown below.
Flag =
VAR prev =
LOOKUPVALUE (
Table1[CostCentre],
Table1[DataDate], DATE ( YEAR ( Table1[DataDate] ), MONTH ( Table1[DataDate] ) - 1, 1 ),
Table1[StaffNumber], Table1[StaffNumber]
)
RETURN
IF ( ISBLANK ( prev ) || Table1[CostCentre] = prev, 0, 1 )
Excellent that is exactly what i was looking for.
Many Thanks
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |