Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, this is my existing table, which aggregate excel files for each months. Excel files are cumulative data so I would like to have diffrence between two periods (last period).
I think it should be possible in langage m, I should order my table on Account and date but how can add a column which will do this:
if account row before is same value as actual row then calculalte row[Amount] - row before[Amount]
thanks
Solved! Go to Solution.
I find a solution with creating an index column and merge with my table with herself.
I find this to help me
My code:
#"Lignes filtrées" = Table.SelectRows(#"Lignes triées", each ([Account] <> null)), #"Index ajouté" = Table.AddIndexColumn(#"Lignes filtrées", "Index", 1, 1, Int64.Type), #"Addition insérée" = Table.AddColumn(#"Index ajouté", "Addition", each [Index] + 1, type number), #"Requêtes fusionnées1" = Table.NestedJoin(#"Addition insérée", {"Index"}, #"Addition insérée", {"Addition"}, "Addition insérée", JoinKind.LeftOuter), #"Addition insérée développé" = Table.ExpandTableColumn(#"Requêtes fusionnées1", "Addition insérée", {"Account", "Amount"}, {"Addition insérée.Account", "Addition insérée.Amount"}), #"Colonnes supprimées" = Table.RemoveColumns(#"Addition insérée développé",{"Index", "Addition"}), #"Personnalisée ajoutée" = Table.AddColumn(#"Colonnes supprimées", "Variation", each if [Addition insérée.Account] <> null
I find a solution with creating an index column and merge with my table with herself.
I find this to help me
My code:
#"Lignes filtrées" = Table.SelectRows(#"Lignes triées", each ([Account] <> null)), #"Index ajouté" = Table.AddIndexColumn(#"Lignes filtrées", "Index", 1, 1, Int64.Type), #"Addition insérée" = Table.AddColumn(#"Index ajouté", "Addition", each [Index] + 1, type number), #"Requêtes fusionnées1" = Table.NestedJoin(#"Addition insérée", {"Index"}, #"Addition insérée", {"Addition"}, "Addition insérée", JoinKind.LeftOuter), #"Addition insérée développé" = Table.ExpandTableColumn(#"Requêtes fusionnées1", "Addition insérée", {"Account", "Amount"}, {"Addition insérée.Account", "Addition insérée.Amount"}), #"Colonnes supprimées" = Table.RemoveColumns(#"Addition insérée développé",{"Index", "Addition"}), #"Personnalisée ajoutée" = Table.AddColumn(#"Colonnes supprimées", "Variation", each if [Addition insérée.Account] <> null
@phaum1967 , add index column in power query
https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi
And this formula in dax
new column = [Amount] -sumx(filter(Table , [index] = earlier([index]) -1),[Amount] )
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |