Questions tagged [powerpivot]

An in-memory OLAP cube that can for instance be installed and used in Excel. It allows for fast analysis of huge datasets.

PowerPivot is part of the Microsoft Business Intelligence suite and uses SQL Server in the background, but it is geared towards the data-savvy business oriented person. It allows you to easily load data from different sources, put them in a relational database-like format and create relationships between the tables.

When all data is loaded, an OLAP store is created in the background and you can do real time analysis by selecting and filtering to your heart's content.

Also included is a powerful query language called DAX (Data Analysis eXpressions) which use an Excel style syntax to allow the user to perform complex calculations.

Power-Pivot datasets can also be served as part of SharePoint and Microsoft has even put at least one all-in hardware appliance on the market in collaboration with hardware vendors.

The following links provide useful reference information:

Further interesting PowerPivot articles can be found here:

1828 questions
6
votes
3 answers

MVC 4 WebApi with PowerPivot?

Does anyone know if MVC 4 WebApi can (or will) be consumable in power-pivot?
cmilhench
  • 666
  • 5
  • 17
5
votes
1 answer

How do I use the DAX function ParallelPeriod

The ParaellePeriod function allows for the comparison of values between points in time (how do sales compare to a year ago). I'm doing something wrong in my use of it, but have no idea what that thing may be. Set up I created a bog simple PowerPivot…
billinkc
  • 59,250
  • 9
  • 102
  • 159
5
votes
0 answers

Any sample on how to expose a olap cube as oData so it can be used using powerpivot?

I'm looking for a sample on how to expose an olap cube as an odata feed so it can be consumed by powerpivot. I do not want to provide direct access to the cube.
Filip Stas
  • 118
  • 1
  • 8
5
votes
1 answer

When will PowerPivot support automatic relationships in OData?

I've read that PowerPivot doesn't support the automatic creation of entity relationships when consuming OData feeds. Can anyone confirm this and is anyone aware of the PowerPivot OData roadmap? Is it coming? Thanks, Mike
Mike Mengell
  • 2,310
  • 2
  • 21
  • 35
5
votes
5 answers

Accessing MySQL DB into Excel 2010 powerpivot

I have a MySQL DB on hostmonster.com and I am trying import data in excel powerpivot, but having hard time connecting to it. Does anyone know if Excel powerpivot can even connect to MySQL? Error I am seeing Unable to retrieve list of databases.…
JewelThief
  • 611
  • 2
  • 10
  • 25
5
votes
2 answers

PowerPivot: How to identify Max Value per Group in a Calculated Column

I am building a data model within Power Pivot for Excel 2013 and need to be able to identify the max value within a column for a particular group. Unfortunately what I thought would work and what I have searched for previously gave me an error or…
Sean D
  • 71
  • 1
  • 2
  • 5
5
votes
1 answer

How do I SUMIF one PowerPivot table according to the rows of a second PowerPivot table?

I have two tables: one of customers ("Donor"), and one of transactions ("Trans"). In Donor, I want a "Total" column that sums all the transactions by a particular Donor ID, which I would calculate in a standard Excel table thus: =SUMIF(Trans[Donor…
Jonathan Harford
  • 361
  • 1
  • 3
  • 9
5
votes
1 answer

Importing OData feed into PowerPivot where the feed is OAuth 2 protected

I have an OData feed that I want to consume using Excel/PowerPivot. The feed is protected using OAuth 2 (Windows Azure Active Directory is the auth server). The advanced tab on the PowerPivot table import wizard has some UI that allows you to…
Mike Goodwin
  • 8,810
  • 2
  • 35
  • 50
5
votes
2 answers

Custom Formula for Grand Total column

I have a frequent problem where the formula I want to use in the Values area in my Pivot-Table is different than the formula I want to use for the Grand Total column of that row. I typically want to Sum the Values but I want to average the Sums.…
Matthew Crews
  • 4,105
  • 7
  • 33
  • 57
5
votes
1 answer

Microsoft Excel: PowerPivot 2010: Linking Access Databases

I've read up on PowerPivot help and researched the video's online. To the best of my knowledge it seems you can only import Microsoft Access Database Tables through PowerPivot. It doesn't seem to be the logical means of accessing Access Tables. I…
Peter Wilson
  • 1,075
  • 3
  • 14
  • 24
5
votes
3 answers

How to change a Table's Connection in Power Pivot

Is there a way I can change the Connection for a particular table in PowerPivot? All things I've researched talk about changing the Connection object itself. But I have 5 tables that refer to a single connection and I only need to change connection…
iLLosophy 1
  • 51
  • 1
  • 3
4
votes
2 answers

How to reuse a set of power query steps in another Excel document?

We have 4GB csv file which is the source for power query in an Excel document. It takes some time to set up all of the transformations, and we would like to be able to reuse the steps when creating other documents which need to import into the data…
bpeikes
  • 3,495
  • 9
  • 42
  • 80
4
votes
1 answer

Application.CalculateUntilAsyncQueriesDone Crashes Excel

I have a OLAP Data Model that is published on the Power-BI Services. I built a report using CUBE formulas. I need to do a bit of Hiding and Showing Columns based on the CUBEVALUE results. And I need to print PDF's for a whole bunch of slicer…
Ejaz Ahmed
  • 598
  • 7
  • 13
4
votes
0 answers

Excel Data Model: set OLAP MaxDrillthroughRecords on existing connection via VBA

I'm using VBA to programmatically create excel workbooks with embedded pivottable objects. My current project is utilizing the Data Model as pivot cache source. I need to be able to drill into details beyond the first 1,000 records (default max…
Chris Meurer
  • 459
  • 3
  • 13
4
votes
2 answers

DAX Userelationship function

I have this issue with Userelationship function in DAX. I have two Tables SalesFact and DimPromoSkus like this: Diagram View. The 2 tables in Data View are like this: Data View The 2 tables are linked from SkuCampaign1, SkuCampaign2, SkuCampaign3…