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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Self-referencing column

Not sure if my title is accurate, but I wasn't sure how to phrase what I need. 

 

Below is a sample table of data. I want to fill in the [Monthly Position] column using a forumla that would be simple in Excel, but is difficult here given my lack of m/DAX programming knowledge.

 

Capture.PNG

 

The formula would be: (previous month's Position) + (current month's Billing) - (current month's Collections)

 

The correct results should look like this:

 

Capture2.PNG

 

I feel like the answer is easy but I'm just missing it for some reason. Any help is much appreciated!!!

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Anonymous 

Please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. A screen cap doesn't allow people to readily copy the data and run a quick test and thus decreases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).

 

You cannot reference a column in its own code. It's a circular dependency. Looking at how your column is built, I believe this would work:

Monthly Position =
CALCULATE (
    SUM ( Table1[Billing] ) - SUM ( Table1[Collection] ),
    Table1[Date] <= EARLIER ( Table1[Date] )
)

 

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors