We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello, I´m tryin to substract rows from the same column (FPR), I need to substract the next value from the previous value acorrding to the date like this: FPR from 30/04/2019 - FPR from 31/03/2019, then 30/05/2019 - 30/04/2019 etc ...
Solved! Go to Solution.
Hi @OscarSuarez10,
sort the table by the column TIME, create an index column starting with 0 and use the following formula for addressing the previous row:
SortByTime = Table.Sort(#"Previous Step", {"TIME"}),
IndexColumn = Table.AddIndexColumn(SortByTime, "Index", 0, 1),
Substract = Table.AddColumn(IndexColumn, "Substract", each [FPR] - IndexColumn[FPR]{[Index] - 1})The value of current row: [FPR] or IndexColumn[FPR]{[Index]}
The value of previous row: IndexColumn[FPR]{[Index] - 1} - give me the value of column FPR on the index [Index] - 1.
Hi @OscarSuarez10,
sort the table by the column TIME, create an index column starting with 0 and use the following formula for addressing the previous row:
SortByTime = Table.Sort(#"Previous Step", {"TIME"}),
IndexColumn = Table.AddIndexColumn(SortByTime, "Index", 0, 1),
Substract = Table.AddColumn(IndexColumn, "Substract", each [FPR] - IndexColumn[FPR]{[Index] - 1})The value of current row: [FPR] or IndexColumn[FPR]{[Index]}
The value of previous row: IndexColumn[FPR]{[Index] - 1} - give me the value of column FPR on the index [Index] - 1.
Thank You for answering, that helped me a lot
But now I only have to substract the first value of 2019 and the last value of 2019, then the first value of 2020 and then the last value of 2020 etc ...
Hi @OscarSuarez10,
I see.
Please close this topic and open a new one, because it requires another approach. You can also mention me and I'll try to respond as soon as possible.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 6 | |
| 5 |