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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
alex753
Frequent Visitor

iterative/recursive calculations in Power Query or DAX

Hi,
I'm a beginner and I'd like to know if it's possible to make certain iterative calculations. In my case I would like to be able to obtain a column that allows me to obtain a performance over my period using daily performance. Currently I'm stuck I can not make the accumulation taking the value -1 of my column for my line N Cells D3 ,D4 .... In my column D is the result i wish to obtain.  Column F is the formula. I put you a screenshot so that my problem is clearer for you.
Thanks again to those who will help me.

 

 

alex753_0-1686845853801.png

 

 

 

2 ACCEPTED SOLUTIONS
AlienSx
Super User
Super User

Hello, @alex753 either List.Generate

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    dv = Source[daily variation],
    dv_count = List.Count(dv),
    gen = 
        List.Generate(
            () => [i = 0, result = 100 + dv{0}],
            (x) => x[i] < dv_count,
            (x) => [i = x[i] + 1, result = x[result] * (1 + dv{i})],
            (x) => x[result]
        ),
    result = Table.FromColumns(Table.ToColumns(Source) & {gen}, Table.ColumnNames(Source) & {"Result I want"})
in
    result

 

or List.Accumulate

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    dv = Source[daily variation],
    dvp = List.Skip(List.Positions(dv)),
    acc = 
        List.Accumulate(
            dvp,
            {100 + dv{0}},
            (s, c) => s & {List.Last(s) * (1 + dv{c})}
        ),
    result = Table.FromColumns(Table.ToColumns(Source) & {acc}, Table.ColumnNames(Source) & {"Result I want"})
in
    result

 

 

View solution in original post

slorin
Super User
Super User

Hi

Another solution

let
Source = YourSource ,
Index = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type),
Daily_variation = List.Transform({0} & List.Skip(Index[daily variation]), each _ +1),
First_variation = List.First(Index[daily variation]),
Result = Table.AddColumn(Index, "Result", each (100+First_variation) * List.Product(List.FirstN(Daily_variation,[Index])))
in
Result

 

Stéphane 

View solution in original post

4 REPLIES 4
slorin
Super User
Super User

Hi

Another solution

let
Source = YourSource ,
Index = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type),
Daily_variation = List.Transform({0} & List.Skip(Index[daily variation]), each _ +1),
First_variation = List.First(Index[daily variation]),
Result = Table.AddColumn(Index, "Result", each (100+First_variation) * List.Product(List.FirstN(Daily_variation,[Index])))
in
Result

 

Stéphane 

thank you very much for your help, this solution works well 

AlienSx
Super User
Super User

Hello, @alex753 either List.Generate

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    dv = Source[daily variation],
    dv_count = List.Count(dv),
    gen = 
        List.Generate(
            () => [i = 0, result = 100 + dv{0}],
            (x) => x[i] < dv_count,
            (x) => [i = x[i] + 1, result = x[result] * (1 + dv{i})],
            (x) => x[result]
        ),
    result = Table.FromColumns(Table.ToColumns(Source) & {gen}, Table.ColumnNames(Source) & {"Result I want"})
in
    result

 

or List.Accumulate

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    dv = Source[daily variation],
    dvp = List.Skip(List.Positions(dv)),
    acc = 
        List.Accumulate(
            dvp,
            {100 + dv{0}},
            (s, c) => s & {List.Last(s) * (1 + dv{c})}
        ),
    result = Table.FromColumns(Table.ToColumns(Source) & {acc}, Table.ColumnNames(Source) & {"Result I want"})
in
    result

 

 

Thanks for you help, both  solutions work well !

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors