Forum Discussion

Sithi1984's avatar
Sithi1984
Copper Contributor
Nov 17, 2020

How to add a column with previous week values in Power Query/Power Bi

I have a set of weekly data, I just want to add the previous week's amount next to current week's Amount. This will help me to find the difference between the weeks.   I have attached he sample fi...
  • SergeiBaklan's avatar
    SergeiBaklan
    Nov 17, 2020

    Sithi1984 

    You may merge the table with itself using Prior Week on left side and Week on right one , like

        #"Merged Queries" = Table.NestedJoin(
            #"Promoted Headers", {"Subscription Code", "Product Category", "Prior Week"},
            #"Promoted Headers", {"Subscription Code", "Product Category", "Week"},
            "Promoted Headers",
            JoinKind.LeftOuter
        ),
    

    Just expand Amount after that and apply desired cosmetic.

Resources