Forum Discussion

mellon199's avatar
mellon199
Frequent Visitor
4 years ago
Solved

Use previous row in current column calculation

Hello, trying to create a calculated column using data from the previous row.

 

See example below for situation which has been calculated in excel for Indexation Factor.

 

Indexation factor formula = B2*(1+A3)

Within excel row B1 is manually set to 1 and the fields below are using the calculation above.

Can this be replicated using a calculated column within PowerBI? Thanks in advance.

 

(A) Selected Index(B) Indexation Factor
 1
0.0296831.029683334
0.0045781.03439749
0.0496291.08573384
0.0479821.137829244
0.0308981.172985656
0.0288481.206823699
0.0195981.230475107
0.0107791.24373867
0.0214251.270385647
0.0374231.31792673
0.0305661.358210528
0.0258741.393353256
0.0121281.410252314
0.0577621.491711364
0.1232621.675582498
0.0430631.747738101
  • Hi mellon199 
    Here is a sample file with the solution https://we.tl/t-KyxjUgcvAi

    For a caclulated column:

     

    Indexation Factor = 
    VAR T1 = 
        FILTER ( 
            Data, 
            Data[Index] <= EARLIER ( Data[Index] ) 
        )
    RETURN
        PRODUCTX ( 
            T1,
            1 + Data[Selected Index]
        )

     

    For a measure:

     

    Indexation Factor Measure = 
    VAR SelectedIndex = 
        SELECTEDVALUE ( Data[Index] )
    VAR T1 = 
        CALCULATETABLE ( 
            Data, 
            Data[Index] <= SelectedIndex,
            ALL ( Data[Selected Index] )
        )
    RETURN
        PRODUCTX ( 
            T1,
            1 + Data[Selected Index]
        )

     

3 Replies

  • tamerj1's avatar
    tamerj1
    Community Champion

    Hi mellon199 
    Here is a sample file with the solution https://we.tl/t-KyxjUgcvAi

    For a caclulated column:

     

    Indexation Factor = 
    VAR T1 = 
        FILTER ( 
            Data, 
            Data[Index] <= EARLIER ( Data[Index] ) 
        )
    RETURN
        PRODUCTX ( 
            T1,
            1 + Data[Selected Index]
        )

     

    For a measure:

     

    Indexation Factor Measure = 
    VAR SelectedIndex = 
        SELECTEDVALUE ( Data[Index] )
    VAR T1 = 
        CALCULATETABLE ( 
            Data, 
            Data[Index] <= SelectedIndex,
            ALL ( Data[Selected Index] )
        )
    RETURN
        PRODUCTX ( 
            T1,
            1 + Data[Selected Index]
        )

     

    • mellon199's avatar
      mellon199
      Frequent Visitor

      Amazing tamerj1 - Thank you for taking the time to complete a working example!  ğŸ˜Š