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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Birinder
Helper III
Helper III

How to repeat same set or number of values for each row in Power Query.

Hi Community,

I have one query.
Does anybody know how Can I have a same set or same number of values for each row.
I will explain it better with an example.
Suppose I have a column named as "KEY" in a table named as "Date".

Birinder_0-1685446959936.png


I want to have year from 2022 to next 4 years i.e. till 2026 for each key. Like this:

Birinder_1-1685447036145.png

 

I have tried doing this, But it is not working:

let
    Source = Table.FromList(List.Distinct(#"Full BECF"[KEY])),
    StartYear = 2022,
    EndYear = 2026,
    NumberofYears = EndYear-StartYear,
    Years = List.Generate(
        () => [i=0, year = StartYear],
        each [i] < NumberofYears,
        each [i=[i]+1,year = [year]+1],
        each [year]
    ),
    Converted = Table.FromList(Years,Splitter.SplitByNothing(),{"Year"},null,ExtraValues.Error),
    Merged = Table.NestedJoin(Source,{"Column1"},Converted,{"Year"},"NewColumn",JoinKind.FullOuter),
    Expanded = Table.ExpandTableColumn(Merged,"NewColumn",{"Year"},{"NewColumn.Year"})
in
    Expanded


Can you guys help me in achieving this.
Much Much thanks in Advance.
 

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

Start with your intial table and add a custom column with this expression

 

= {2022..2026}

 

Then hit the expand button in the column header to expand that list to new rows.

 

Pat

 

Microsoft Employee

View solution in original post

2 REPLIES 2
ppm1
Solution Sage
Solution Sage

Start with your intial table and add a custom column with this expression

 

= {2022..2026}

 

Then hit the expand button in the column header to expand that list to new rows.

 

Pat

 

Microsoft Employee

@ppm1 Thanks a lot.
Crazy, how much time I was wasting instead of this simple code.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.