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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
abhilashmjoseph
New Member

How can I add additional duplicate rows in Power BI based on a specific number in a column?

Hi,

I would like to explore options for adding additional duplicate rows in Power BI based on a specific number in a column. For instance, as illustrated below, I aim to replicate my rows the same number of times as indicated in the 'Span(Months)' column. Can someone suggest an automated method for achieving this?

 2023-12-01 13_12_57-Window.png

2 ACCEPTED SOLUTIONS
AlienSx
Super User
Super User

hello, @abhilashmjoseph 

    to_list = Table.TransformColumns(your_table, {"Span (Months)", (x) => List.Repeat({1}, x)}),
    expand = Table.ExpandListColumn(to_list, "Span (Months)")

View solution in original post

spinfuzer
Super User
Super User

You could add a custom column which creates list from 1 to span and then expand column to new rows.

={1 .. [Span (Months)] }

 

View solution in original post

3 REPLIES 3
spinfuzer
Super User
Super User

You could add a custom column which creates list from 1 to span and then expand column to new rows.

={1 .. [Span (Months)] }

 

AlienSx
Super User
Super User

hello, @abhilashmjoseph 

    to_list = Table.TransformColumns(your_table, {"Span (Months)", (x) => List.Repeat({1}, x)}),
    expand = Table.ExpandListColumn(to_list, "Span (Months)")

Thnak you for the response , but not quite clear can you please elaborate ? 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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

Top Solution Authors