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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Narukkp
Helper V
Helper V

Previous Row closing balance

Hi Team,

I required below highlighed format output. I mean previoiuse row closing balance should be shown in opening balance in combination of project code and item.

PreviousSales.JPG

1 ACCEPTED SOLUTION

Hi 

@amitchandak i do not have any date field. Any how i got the solution my self and it is working as expected. 

 
Concate = CONCATENATE(Test[ProjectCode],Test[Item])
Row Number =
VAR CurrentCustomer= Test[Concate]
VAR CurrentDate = Test[MonthYear]
RETURN

CALCULATE(
DISTINCTCOUNT(Test[Date]),
FILTER(
ALL( Test),
Test[Concate]=CurrentCustomer
&& Test[MonthYear] <= CurrentDate
)
)
 
PreviousSales1 =
VAR CurrentCustomer= SELECTEDVALUE(Test[Concate])
VAR Rno = SELECTEDVALUE(Test[Row Number])
RETURN

CALCULATE(
SUM(Test[ClosingBalance]),
FILTER(
ALL( Test),
Test[Concate] = CurrentCustomer
&& Test[Row Number] = Rno-1
)
)
 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

Make sure you have date calendar. Use time intelligence
Opening balance = CALCULATE(SUM(Table[closing balance]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
//OR
Opening balance = CALCULATE(SUM(Table[closing balance]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi 

@amitchandak i do not have any date field. Any how i got the solution my self and it is working as expected. 

 
Concate = CONCATENATE(Test[ProjectCode],Test[Item])
Row Number =
VAR CurrentCustomer= Test[Concate]
VAR CurrentDate = Test[MonthYear]
RETURN

CALCULATE(
DISTINCTCOUNT(Test[Date]),
FILTER(
ALL( Test),
Test[Concate]=CurrentCustomer
&& Test[MonthYear] <= CurrentDate
)
)
 
PreviousSales1 =
VAR CurrentCustomer= SELECTEDVALUE(Test[Concate])
VAR Rno = SELECTEDVALUE(Test[Row Number])
RETURN

CALCULATE(
SUM(Test[ClosingBalance]),
FILTER(
ALL( Test),
Test[Concate] = CurrentCustomer
&& Test[Row Number] = Rno-1
)
)
 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.