Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Reply
tito1986
New Member

Previous rows power pivot

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.


Here's the example:
I have this informationtable.PNG

 

Aditional, i have two measure for this data:
 
TOT_INGRESOS:=CALCULATE(SUM('Nomina'[valor]);Nomina[tipo rubro]="ingreso")
TOT_EGRESOS:=CALCULATE(SUM('Nomina'[valor]);Nomina[tipo rubro]="descuento")
 
When you insert a PivotTable i need the folowing:
Create a measure that returns the value of the previous row for each item.
 
Previos rows.PNG
 

I have many items of income and deduction, and there are months in which I have no values.
 
your help please.
1 ACCEPTED SOLUTION
v-caliao-msft
Microsoft Employee
Microsoft Employee

@tito1986,

 

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)

Capture.PNG

 

Regards,

Charlie Liao

View solution in original post

1 REPLY 1
v-caliao-msft
Microsoft Employee
Microsoft Employee

@tito1986,

 

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)

Capture.PNG

 

Regards,

Charlie Liao

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.