Forum Discussion
Edit cell in duplicated row
- Anonymous4 years ago
I would just make a duplicate of your original non repeating table, filter the duplicate table to just be the rows that you want repeated, whatever criteria that might be. Once filtered, remove the duplicate column, and add a custom column from the GUI named "duplicate", and make the formula just:
= null
Now, you can use the Append Query button, which is Table.Combine({Table1, Table2}).
Then just sort by Product, then by duplicate-descending.
That's it!
--Nate
I would just make a duplicate of your original non repeating table, filter the duplicate table to just be the rows that you want repeated, whatever criteria that might be. Once filtered, remove the duplicate column, and add a custom column from the GUI named "duplicate", and make the formula just:
= null
Now, you can use the Append Query button, which is Table.Combine({Table1, Table2}).
Then just sort by Product, then by duplicate-descending.
That's it!
--Nate
- mitchell_ian4 years agoNew Member
thanks Anonymous that's worked a treat