Exporting data from PowerPivot

Moderat picture Moderat · Aug 22, 2014 · Viewed 30.4k times · Source

I have an enormous PowerPivot table (839,726 rows), and it is simply too big to copy-paste into a regular spread sheet. I have tried copying it and then reading it directly into R using the line data = read.table("clipboard", header = T), but neither of these approaches work. I am wondering if there is some add-on or method I can use to export my PowerPivot table as a CSV or .xlsx? Thanks very much

Answer

Riadh picture Riadh · Aug 24, 2014
  • Select all the PowerPivot table
  • Copy the data
  • Past the data in a text file (for example PPtoR.txt)
  • Read the text file in R using tab delimiter: read.table("PPtoR.txt", sep="\t"...)