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
4
votes
1 answer

"Relationship may be needed" although relationship is set

I have two simple table in Excel 2010 - Products and Sales: I then linked them into PowerPivot - and here created the relationship from Sales.ProductId to Products.Id - like this: Now I'm trying to build a Pivot that for each productId in the…
Peter Albert
  • 16,917
  • 5
  • 64
  • 88
4
votes
3 answers

PowerPivot DAX: Identify Max & Min Value per Group

I am in need of identifying the maximum and minimum value per a defined group within a PowerPivot connected PivotTable. Please reference the following base Excel table (posted via ASCII) that is linked to a corresponding PowerPivot table:…
user1159554
  • 151
  • 2
  • 3
  • 9
4
votes
4 answers

Keeping filters in a pivot table in absence of data

Imagine I have a quality control in a factory retrieving the state of each product StateId 1 - Good 2 - Acceptable 3 - Subproduct 4 - waste My table 'StateIdHistory' gives me the state of each ProductId at each time. I am creating a pivot table in…
4
votes
1 answer

PowerPivot relationship based on two columns per table

I have a table geoLocations which holds among others the two columns latitude and longitude. There is a second table (let's name it cities), which holds for each unique pair of laitude and longitude the corresponding city. How can I model this…
user2348343
  • 41
  • 1
  • 2
4
votes
2 answers

Power pivot many to many relationship between two tables

As you can see from the image i have a one-to-many relation ship between these two tables. BUT i want to make it soo its a Many-to-many. Im using AssetID as the key for these relationships. Any ideas on how i could create this?? The reason whu need…
BlahWoo
  • 345
  • 4
  • 9
  • 28
3
votes
2 answers

When a condition is met, show current row value on each line below it, where the condition is not met

is it possible via either Power Query or Power Pivot to get from following table ID Description Category1 1 Task1 2 Task2 Category2 3 Task3 4 Task4 a table, where the category is in a separate column for each row under…
MalyMajo
  • 75
  • 3
3
votes
0 answers

Cubevalue returning blank (zero length string) when a member is a Cubset function

The CUBESET function returns the appropriate set: CUBESET("ThisWorkbookDataModel", "NONEMPTY([CohortGrowth].[MonthNo].CHILDREN, ([CohortGrowth].[CohortYear].&[2], [CohortGrowth].[Cohort].&[Denver]))") =…
3
votes
3 answers

How to get distinct count within pivot table(Excel for Mac) having filters?

Excel for Mac doesn't support Power Pivot and thereby doesn't have distinct count feature. What is the best workaround to get distinct count in such cases? Sample Excel Columns: Period Criteria1 Criteria2 Criteria3 Data Sample Pivot…
Jobin
  • 1,281
  • 2
  • 11
  • 14
3
votes
1 answer

Show only facts in Excel's show fields dropdown when using tabular cube

When having a connection to a multidimensional cube in Excel (powerpivot table) there is an option to Show fields and select only one fact and its related dimensions. Here is what I mean This shows only the facts from the model. BUT When using…
Pepys
  • 981
  • 7
  • 16
  • 34
3
votes
0 answers

Large datasets published with OData WCF Data Services and Excel PowerPivot

I want to publish an SQL Server database, for testing purposes AdventureWorksDW, the data warehouse sample database that provides Microsoft. I created a new "WCF Data Service" project in VS and created an Entity Framework Model to pass it into the…
Lester
  • 513
  • 5
  • 15
3
votes
1 answer

Display related data when filtered in Power BI

Hello, here is my dataset : What I would like to have is a filter on Campagne which shows all the other Campagne if the Contract number is the same. I explain myself. If I click on Campagne 3 in my filter, I want to see 1, 2, 3 and the attribution…
Mathieu Ricour
  • 368
  • 1
  • 4
  • 25
3
votes
2 answers

CALCULATE with OR condition in two tables

In order to Sum the sales amount of blue products OR products that belong to category shoes, I'm using the following DAX expression: CALCULATE( SUM(Table[SalesAmount]), FILTER( Table, Table[Color] = "Blue" || Table[Category] =…
user882670
3
votes
1 answer

How to filter out multiple dimensions in Excel using cube functions?

I've read this post (use Cube Functions to get filtered dimensions) and it's quite helpful, but I want to add one more level of filtering. So let's say my data looks like this in PowerPivot: Month Category Product # Revenue January …
Sultan of Swing
  • 430
  • 1
  • 6
  • 20
3
votes
2 answers

Writing a Secure WCF Data Service for Excel PowerPivot

I'm having some trouble writing a secure WCF data service to be consumed by PowerPivot. The service works fine, and I can consume the data in PowerPivot without trouble. My issue is that when I enter the user ID and password for the Data Feed in…
Aaron Drenberg
  • 1,117
  • 2
  • 11
  • 29
3
votes
1 answer

Connecting to a Plex ERP Database from Power Pivot in MS Excel using an ODBC connection

Below is the error message: DataSource.Error: ODBC: ERROR [42S02] [Plex][ODBC ODBC Report Data Source driver][OpenAccess SDK SQL Engine]Base table:". not found.[10129] Details: DataSourceKind=Odbc DataSourcePath=dsn=Plex ODBC…
jadams0304
  • 31
  • 3