Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hello Team
I am new to dax kindly assist with a formula that will give me the result below. I want column A to alway have the value of the previous row in Column C.
Column A | Column B | Difference |
1,000.00 | 100.00 | 900.00 |
900.00 | 50.00 | 850.00 |
850.00 | 200 | 650.00 |
650.00 | 50.00 | 600.00 |
Thank you
Solved! Go to Solution.
You would need to add an index column to your data in Power Query.
Column D =
VAR currentindex = Sheet1[Index]
RETURN
IF (
Sheet1[Column A] = BLANK (),
CALCULATE (
MIN ( Sheet1[Column C] ),
FILTER ( Sheet1, Sheet1[Index] = currentindex - 1 )
),
Sheet1[Column A] - [Column B]
)
Paul
@bilyafamily
It seems you want to make change on Column A. But in Power BI, it is impossible to edit the original columns from databases, you can only create a new column that returns you expected value. In this case, we would need the original version of the your sample or show where are the 3 columns come from.
Best,
Paul
Original table looks like this
Column A | Column B | Column C |
1,000.00 | 100.00 | 900.00 |
50.00 | 850 | |
200 | 650.00 | |
50.00 | 600.00 |
Expected Result should look this this
Column A | Column B | Column C | Column D |
1,000.00 | 100.00 | 900.00 | 900 |
50.00 | 850 | C1 | |
200 | 650.00 | C2 | |
50.00 | 600.00 | C3 |
You would need to add an index column to your data in Power Query.
Column D =
VAR currentindex = Sheet1[Index]
RETURN
IF (
Sheet1[Column A] = BLANK (),
CALCULATE (
MIN ( Sheet1[Column C] ),
FILTER ( Sheet1, Sheet1[Index] = currentindex - 1 )
),
Sheet1[Column A] - [Column B]
)
Paul
Proud to be a Super User!
See the expected result below
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.