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
JP3
Regular Visitor

Removed

 
1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @JP3 

 

It seems your code is for a measure rather than for a column. And there are two tables 'Final CoPay Details' and '2022 Billing Data' in the code, what is the relationship between these tables?

 

Assume your data is from the same table, you can create a new column with below code

RunningBalance = 
var vRunningAmountDue = SUMX(FILTER(Invoices,Invoices[ParticipantPersonID]=EARLIER(Invoices[ParticipantPersonID])&&Invoices[BillDate]<=EARLIER(Invoices[BillDate])),Invoices[Total Amount Due])
var vRunningClientPaid = SUMX(FILTER(Invoices,Invoices[ParticipantPersonID]=EARLIER(Invoices[ParticipantPersonID])&&Invoices[BillDate]<=EARLIER(Invoices[BillDate])),Invoices[ClientPaid])
return
vRunningAmountDue - vRunningClientPaid

vjingzhang_0-1657607517663.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

1 REPLY 1
v-jingzhang
Community Support
Community Support

Hi @JP3 

 

It seems your code is for a measure rather than for a column. And there are two tables 'Final CoPay Details' and '2022 Billing Data' in the code, what is the relationship between these tables?

 

Assume your data is from the same table, you can create a new column with below code

RunningBalance = 
var vRunningAmountDue = SUMX(FILTER(Invoices,Invoices[ParticipantPersonID]=EARLIER(Invoices[ParticipantPersonID])&&Invoices[BillDate]<=EARLIER(Invoices[BillDate])),Invoices[Total Amount Due])
var vRunningClientPaid = SUMX(FILTER(Invoices,Invoices[ParticipantPersonID]=EARLIER(Invoices[ParticipantPersonID])&&Invoices[BillDate]<=EARLIER(Invoices[BillDate])),Invoices[ClientPaid])
return
vRunningAmountDue - vRunningClientPaid

vjingzhang_0-1657607517663.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

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.