Forum Discussion
Copying a data table? I see the copy function when I right click on a table but how do I paste this?
- 8 years ago
Does anyone know definitively whether this is possible?
If it isn't possible to paste a table, then what is the point of the "Copy Table" menu item? Is this a feature that was accidentally left unfinished?
UPDATE: Ok, the purpose of that is so you can paste into an external app like Excel.
The only way to reuse a DAX based table, and preserve post creation configuration like setting of sort columns, formats, etc is to use the PBIX file as a starting point for all new projects. If you've started without doing that, you can create a new table in the destination and paste in the DAX, but you'll have to redo those customization tasks.
Hi ap, turtleseatpizza, TeeGee, jhauff77060, Sean
I think Copy Entire table feature is not working as per my search over all Power Bi Desktop application. (As i did not find any paste option there.)
But for copy paste below images will explain copy -- paste table.
Copy table (Right Click)Paste (Right Click)
- Anonymous8 years agoNot applicable
Copy and Paste are usually reserved in program design for cases where you want to paste the data to a certain location. That doesn't really fit what you're trying to do. A table doesn't go anywhere in particular in your data model; it simply exists in your data model. You can't paste a table into another table because that's not how database queries work. This isn't Excel. If you're trying to add the data from one table onto the end of another existing table, you would use the Append function in the query editor, not paste. If you simply want to make a whole copy of the table as a new table, you can use either Duplicate or Reference. Duplicate allows you to go back and make changes to the original query, Reference simply makes a copy by pointing at the original. If you want to add Table A to Table B as new columns rather than new rows, that's a Merge function.
I think everyone is just geting hung up on the terms "copy and paste" rather than looking for the functionality they're trying to get. The functionality exists. It just has a different name than you're expecting.