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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
calcstuff
Frequent 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
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!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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