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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
JohnSalt
Helper I
Helper I

copy and insert a row with one change

Hi 

I have a large table (83 Cols, 2M+ Rows)  is that large these days?, I need to find the rows where the field 'productcode' is between 8000 and 9000, generate a duplicate row for each but with the 'createdDate' field set to one month earlier, and then again prior to that etc all the way back to the start of the uk fiscal year i.e. 1st April.

 

I sort of have parts of the picture using [createdDate = Date.AddMonths([createdDate],-1)] to reduce the month by one and using Table.insertrows for an additional row however with 83 cols i dont fancy specifying each and every single one! Is there a way in power query to just duplicate the entire row and change the createdDate to the month before?

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

Hi @JohnSalt,

You can try to manipulate the rows as records, but I think that a simpler approach will be to:
1. Filter the rows you need to duplicate.
2. Change the values.
3. Create a union of the original table with the changed rows.

look at this code

 

let
    Source = #table( type table [value1=text,value2=text,date=date], {{"a","aa",#date(2000,1,1)},{"b","bb",#date(2000,2,1)},{"c","cc",#date(2000,3,1)}}),
    #"Filtered Rows" = Table.SelectRows(Source, each ([date] >= #date(2000, 2, 1))),
    #"Replaced Value" = Table.ReplaceValue(#"Filtered Rows",each _[date],each Date.AddMonths(_[date],-1),Replacer.ReplaceValue,{"date"}),
    RestoreType = Value.ReplaceType(#"Replaced Value",Value.Type(#"Filtered Rows")),
    #"Appended Query" = Table.Combine({Source, RestoreType})
in
    #"Appended Query"

 

 Start:

SpartaBI_0-1655993043041.png
End:

SpartaBI_1-1655993072665.png


You will need to check the performance of this operation for your case.




2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

View solution in original post

1 REPLY 1
SpartaBI
Community Champion
Community Champion

Hi @JohnSalt,

You can try to manipulate the rows as records, but I think that a simpler approach will be to:
1. Filter the rows you need to duplicate.
2. Change the values.
3. Create a union of the original table with the changed rows.

look at this code

 

let
    Source = #table( type table [value1=text,value2=text,date=date], {{"a","aa",#date(2000,1,1)},{"b","bb",#date(2000,2,1)},{"c","cc",#date(2000,3,1)}}),
    #"Filtered Rows" = Table.SelectRows(Source, each ([date] >= #date(2000, 2, 1))),
    #"Replaced Value" = Table.ReplaceValue(#"Filtered Rows",each _[date],each Date.AddMonths(_[date],-1),Replacer.ReplaceValue,{"date"}),
    RestoreType = Value.ReplaceType(#"Replaced Value",Value.Type(#"Filtered Rows")),
    #"Appended Query" = Table.Combine({Source, RestoreType})
in
    #"Appended Query"

 

 Start:

SpartaBI_0-1655993043041.png
End:

SpartaBI_1-1655993072665.png


You will need to check the performance of this operation for your case.




2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

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!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors