This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi!
Is it possible to create a table from another table where you calculate the change of variable. In my table I have many variables for road condition. The same road is measured many times and i'd like to create a table where I can see how the values have changed between runs. In the picture the blue table is the state my data is now and the green is the desired outcome. Thanks in advance!
.Picture
Solved! Go to Solution.
Yes, it's possible although a little unusual to go down to individual value differences since power bi is generally good for aggregations and visualising sequences.
You could create a calculated column similar to this:
DiffPreviousYr = VAR _year = road[run] VAR _road = road[rd] VAR _dist = road[dist] VAR _previousVal = CALCULATE(SUM(road[val1]), FILTER(road, road[dist] = _dist && road[rd] = _road && road[run] = _year - 1)) RETURN road[val1] - _previousVal
and, for your visualisation (which includes road, distance and year , and the calculated column) you would need to use slicers or filters on each of those columns so, for example, year = 2019, run = 1, distance = 100
Yes, it's possible although a little unusual to go down to individual value differences since power bi is generally good for aggregations and visualising sequences.
You could create a calculated column similar to this:
DiffPreviousYr = VAR _year = road[run] VAR _road = road[rd] VAR _dist = road[dist] VAR _previousVal = CALCULATE(SUM(road[val1]), FILTER(road, road[dist] = _dist && road[rd] = _road && road[run] = _year - 1)) RETURN road[val1] - _previousVal
and, for your visualisation (which includes road, distance and year , and the calculated column) you would need to use slicers or filters on each of those columns so, for example, year = 2019, run = 1, distance = 100
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 38 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |