How do you copy the powerpivot data into the excel workbook as a table?

隐身守侯 提交于 2019-12-01 06:01:04

I found this answer: link which I will try and summarize with out cutting and pasting to much. This assumes you have powerpivot installed.

  1. goto powerpivot and "import from and external source" the data you want to munge and bring back into the workbook as a table
  2. Key here is to select the checkbox “Enable selection of multiple tables”.
  3. when prompted at the "import data" window, pick pivot report (you won't really use this)
  4. go back to powerpivot with the "Manage Data Model:
  5. add a new measure below your data. something like: NRofOrders:=COUNTROWS(values(FactResellerSales[SalesOrderNumber]))+0 (you won't really use this but this seems to change the query to this table so that you can use DAX)
  6. also add any columns that you want ( for me, this is want I wanted that I wanted to be reflected back in the workbook)
  7. back to Excel, select the data tab, click on Existing connections and select Tables: and then pick a table from your query.
  8. boom, you're done (the link continues on and you should read that as it's interesting but at this point you should have powerpivot query with your modification as a table in your workbook)

The July 2014 update to Power Query (pushed out at the end of Aug) simplifies the answer. With the new Power Query Update you can pull the data into the Data Model with out having to also copy it to the Works sheet.

  1. goto powerquery and import the data you want to munge. Use the option to just add it to the Data Model.
  2. go back to excel and then go to powerpivot with the "Manage Data Model" button.
  3. munge your data (add columns, whatever)
  4. back to Excel, select the data tab, click on Existing connections and select Tables: and then pick a table from your query.
  5. boom, you're done

In the PowerPivot window you can select the table, or elements of it, and then copy (nornal right click or ctrl +c) and paste that into your spreadsheet.

This works for reasonable amounts of data but if you try and do it with thousands of rows you may find that excel objects and falls over, based on my experience.

Vlookups kind of defeat the purpose of PowerPivot :-)

Found a great solution over on Mr Excel (http://www.mrexcel.com/forum/power-bi/637919-extracting-static-data-powerpivot-without-pivot-tables.html)

If you are trying to get a PowerPivot table into Excel, then you can simply query it. The easiest way to set that up is to first create any pivot table based on you PowerPivot data. Then double-click the measures area to drill-through. This creates a table with a connection to your PowerPivot model. Then edit the command text by going to: Data > Connections > Properties > Definition tab > Command Text.

Change it to something like Code: EVALUATE Table1

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!