Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi, hello from Ecuador, i am a big problem.
I have the following payroll information and I need to get the previous row to get the percentage increase per item month by month but I can not find the solution.
Solved! Go to Solution.
In DAX you can’t reference the previous row in any way because there is no order to the rows. In your scenairo, you need to get previous month's value, so you need to sort your data by date. And then get previous value by using LOOKUPVALUE function.
PreviousValue = LOOKUPVALUE(Table1[Amount],Table1[Order],Table1[Order]-1)
Regards,
Charlie Liao
In DAX you can’t reference the previous row in any way because there is no order to the rows. In your scenairo, you need to get previous month's value, so you need to sort your data by date. And then get previous value by using LOOKUPVALUE function.
PreviousValue = LOOKUPVALUE(Table1[Amount],Table1[Order],Table1[Order]-1)
Regards,
Charlie Liao
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.