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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Daretoexplore
Advocate I
Advocate I

Previous transaction

Hey

 

So I have data that looks like this

 

CustID.     Transaction Amount

123WDX.   $345

456FGT.      $576

123WDX.   $200

 

I'm trying to add a column which adds the value of the previous transaction on the same row as the last, without any date parameters.

So in this instance, I'd like

CustID.     Transaction Amount  Previous

123WDX.   $345.                        Unknown

 

456FGT.      $576.                        Unknown

 

123WDX.   $200.                         $345

 

Appreciate it's a tricky one but would love to see if anyone has any views. Many thanks

1 ACCEPTED SOLUTION
Nasif_Azam
Super User
Super User

Hey @Daretoexplore ,

To create a "Previous Transaction" column based on CustID, you can use Power Query (M language) or DAX depending on where you're building this (e.g., Excel, Power BI, etc.). Below are both approaches.

Option 1: Power Query (M Language)

Power Query doesn’t use row numbers directly, but we can group and sort each customer’s transactions, then add an index to track the order.

Steps:

  1. Load your data into Power Query.

  2. Sort by CustID and a temporary index (if no date exists).

  3. Group by CustID.

  4. Inside each group:

    • Sort by the temporary index.

    • Add an Index column starting at 0.

    • Add another column that’s the Transaction Amount shifted by 1 row.

  5. Expand the tables and rename the new column as "Previous".

M Code Sample:

let
    Source = YourTable,
    Sorted = Table.Sort(Source, {"CustID", Order.Ascending}),
    Grouped = Table.Group(Sorted, {"CustID"}, {
        {"AllData", each 
            let
                AddedIndex = Table.AddIndexColumn(_, "Index", 0, 1, Int64.Type),
                Shifted = Table.AddColumn(AddedIndex, "Previous", each try AddedIndex[Transaction Amount]{[Index]-1} otherwise null)
            in
                Shifted
        , type table}
    }),
    Expanded = Table.Combine(Grouped[AllData])
in
    Expanded

 

Option 2: DAX (Power BI)

If you're using DAX in a calculated column:

PreviousTransaction = 
VAR CurrentCust = 'Table'[CustID]
VAR CurrentIndex = 'Table'[Index] -- Add an index if needed
RETURN
    CALCULATE(
        MAX('Table'[Transaction Amount]),
        FILTER(
            'Table',
            'Table'[CustID] = CurrentCust &&
            'Table'[Index] = CurrentIndex - 1
        )
    )
  • If you don’t have an index or timestamp, create an index using Power Query before this.

Output Example (Expected)

Nasif_Azam_0-1749655067773.png

 

If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.


Best Regards,
Nasif Azam



Did I answer your question?
If so, mark my post as a solution!
Also consider helping someone else in the forums!

Proud to be a Super User!


LinkedIn

View solution in original post

5 REPLIES 5
v-tejrama
Community Support
Community Support

Hi @Daretoexplore,

 

Just wanted to check if you had the opportunity to review the suggestion provided by @Nasif_Azam.

 

If the response has addressed your query, please Accept it as a solution and give a 'Kudos' so other members can easily find it.

 

Thank you.

Tejaswi.

Hi @Daretoexplore


I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please Accept it as a solution so that other community members can find it easily.

 

Thank you.

Tejaswi.

Hi @Daretoexplore,

 

I hope the information provided has been useful. Please let me know if you need further clarification or would like to continue the discussion.

 

If your question has been answered, please “Accept as Solution” and Give “Kudos” so others with similar issues can easily find the resolution.

 

Thank you.

Tejaswi.

Nasif_Azam
Super User
Super User

Hey @Daretoexplore ,

To create a "Previous Transaction" column based on CustID, you can use Power Query (M language) or DAX depending on where you're building this (e.g., Excel, Power BI, etc.). Below are both approaches.

Option 1: Power Query (M Language)

Power Query doesn’t use row numbers directly, but we can group and sort each customer’s transactions, then add an index to track the order.

Steps:

  1. Load your data into Power Query.

  2. Sort by CustID and a temporary index (if no date exists).

  3. Group by CustID.

  4. Inside each group:

    • Sort by the temporary index.

    • Add an Index column starting at 0.

    • Add another column that’s the Transaction Amount shifted by 1 row.

  5. Expand the tables and rename the new column as "Previous".

M Code Sample:

let
    Source = YourTable,
    Sorted = Table.Sort(Source, {"CustID", Order.Ascending}),
    Grouped = Table.Group(Sorted, {"CustID"}, {
        {"AllData", each 
            let
                AddedIndex = Table.AddIndexColumn(_, "Index", 0, 1, Int64.Type),
                Shifted = Table.AddColumn(AddedIndex, "Previous", each try AddedIndex[Transaction Amount]{[Index]-1} otherwise null)
            in
                Shifted
        , type table}
    }),
    Expanded = Table.Combine(Grouped[AllData])
in
    Expanded

 

Option 2: DAX (Power BI)

If you're using DAX in a calculated column:

PreviousTransaction = 
VAR CurrentCust = 'Table'[CustID]
VAR CurrentIndex = 'Table'[Index] -- Add an index if needed
RETURN
    CALCULATE(
        MAX('Table'[Transaction Amount]),
        FILTER(
            'Table',
            'Table'[CustID] = CurrentCust &&
            'Table'[Index] = CurrentIndex - 1
        )
    )
  • If you don’t have an index or timestamp, create an index using Power Query before this.

Output Example (Expected)

Nasif_Azam_0-1749655067773.png

 

If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.


Best Regards,
Nasif Azam



Did I answer your question?
If so, mark my post as a solution!
Also consider helping someone else in the forums!

Proud to be a Super User!


LinkedIn
m4ni
Resolver I
Resolver I

Hi,

You may want to try using the OFFSET function in DAX which allows you to move up or down in data.

Link to details:   OFFSET function (DAX) - DAX | Microsoft Learn

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.