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
calcstuff
Regular Visitor

How do I combine Group_By and Lag?

EmployeeSalesLagLagGroup
Billy1  
Billy211
Billy322
Bobby53 
Bobby1055
Bobby151010

 

I know it's fairly easy to generate the Lag column shown above, based off of the Sales column. Instead, can I first group by Employee and then add the custom LagGroup column, as shown above? If you notice, Bobby's first LagGroup is blank, as the intent is to group by employee, evaluate lags, and not pull in lag values from other employees. What power query or what DAX do I need to do? This is all done in a dataflow if that matters.

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

Hi @calcstuff ,

 

You can try this method:

In the Power Query, you can add a index column:

vyinliwmsft_0-1669183363829.png

Then new a column:

LagGroup =
VAR _index =
    CALCULATE (
        MAX ( 'Table'[Index] ),
        FILTER (
            'Table',
            [Employee] = EARLIER ( 'Table'[Employee] )
                && [Index] < EARLIER ( 'Table'[Index] )
        )
    )
RETURN
    CALCULATE ( MAX ( 'Table'[Sales] ), FILTER ( 'Table', [Index] = _index ) )

The result is:

vyinliwmsft_1-1669183474664.png

 

Hope these help you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

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

1 REPLY 1
v-yinliw-msft
Community Support
Community Support

Hi @calcstuff ,

 

You can try this method:

In the Power Query, you can add a index column:

vyinliwmsft_0-1669183363829.png

Then new a column:

LagGroup =
VAR _index =
    CALCULATE (
        MAX ( 'Table'[Index] ),
        FILTER (
            'Table',
            [Employee] = EARLIER ( 'Table'[Employee] )
                && [Index] < EARLIER ( 'Table'[Index] )
        )
    )
RETURN
    CALCULATE ( MAX ( 'Table'[Sales] ), FILTER ( 'Table', [Index] = _index ) )

The result is:

vyinliwmsft_1-1669183474664.png

 

Hope these help you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

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.

Top Solution Authors
Top Kudoed Authors