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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Edelmundo
Frequent Visitor

Checking if record was the same in previous month

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. 

 

StaffTable.PNG

 

 

 

 

Any help or advice is greatly appreciated

 

Thanks

 

Eddie

 

 

 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Edelmundo,

 

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 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Edelmundo,

 

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 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Excellent that is exactly what i was looking for.

 

Many Thanks 

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.