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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Recursive column in DAX

Hey,

How can I achieve the following in a column in a DAX, this sounds a bit like recursive. 

I have  a table like following in PowerBI, in which I wish to populate Column B in the following steps:

1. For first row it should have the value as column A

2. For rows after first row: 

  1. Second row (column B) = 1824 - 0
  2. Third row (column B) = previous row calculated column B value (1824) - current row column A value (24)
  3. and so on
  4. if the column A is blank than populate with previous row calculated column B

 

Row

Column A

Column B

1

1824

1824

2

0

1824

3

24

1800

4

48

1752

5

 

1752

6

 

1752

              

Any help associated with it is highly appreciated.

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To create two calculated column as below.

 

Column = 
VAR k =
    FILTER ( 'Table', 'Table'[Column A] <> BLANK () )
VAR minr =
    CALCULATE ( MIN ( 'Table'[Row] ), ALL ( 'Table' ), KEEPFILTERS ( k ) )
RETURN
    IF ( 'Table'[Row] = minr, 'Table'[Column A], 0 - 'Table'[Column A] )
new column B = 
CALCULATE (
    SUM ( 'Table'[Column] ),
    FILTER ( 'Table', 'Table'[Row] <= EARLIER ( 'Table'[Row] ) )
)

Capture.PNG

 

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To create two calculated column as below.

 

Column = 
VAR k =
    FILTER ( 'Table', 'Table'[Column A] <> BLANK () )
VAR minr =
    CALCULATE ( MIN ( 'Table'[Row] ), ALL ( 'Table' ), KEEPFILTERS ( k ) )
RETURN
    IF ( 'Table'[Row] = minr, 'Table'[Column A], 0 - 'Table'[Column A] )
new column B = 
CALCULATE (
    SUM ( 'Table'[Column] ),
    FILTER ( 'Table', 'Table'[Row] <= EARLIER ( 'Table'[Row] ) )
)

Capture.PNG

 

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

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.