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

powerpivot function like "NOT IN" of sql

Let's say there is three table. DimItem, DimCustomer and FactSale. How could i find the customers who don't buy specific item? it looks like 'NOT IN' of sql.
Phyo Min Yu
  • 153
  • 1
  • 10
0
votes
1 answer

How to do this in Excel using Powerpivot or PowerQuery

How can i group the total per group just like this Group1 GroupA Tex1 100 300 A1 100 Group1 GroupA Tex1 100 A2 100 Group1 GroupA Tex1 100 A3 100 Group1 GroupB Tex2 100 100 A1 200 Group1 GroupB …
Loku
  • 11
  • 3
0
votes
1 answer

Powerpivot function not available to office 2010

My office 2010 does not have some of the function of Powerpivot (EVALUATE, SUMMARIZE Etc.). Is this not available to office 2010?
Loku
  • 11
  • 3
0
votes
1 answer

DAX Measure with different granularities

I'm looking for help with how to write a specific DAX measure. Here is a simplified version of my data and model: Tables: Model: Measures: Total Amt:=SUM(Amounts[Amt]) Total Pos Amt:=SUMX(Amounts, IF([Amt]<0,0,[Amt])) Total Amt…
LoganTheSnowEater
  • 555
  • 2
  • 4
  • 17
0
votes
1 answer

DAX SUMX over 2 levels

This should be easy but I must be missing something obvious. I have the following PowerPivot table: Level 1 Level 2 Amount ------- ------- ------ A X 100 A Y 200 B X 400 B Y …
LoganTheSnowEater
  • 555
  • 2
  • 4
  • 17
0
votes
1 answer

Count Customers in a column

I have a table that has 1K rows. In the table there is a column that has the names of the customers. I need to add a column that counts (index) how many customers I have. Doing a calculated measure using the distinctcount formula I get 3156…
Chapin
  • 31
  • 1
  • 2
0
votes
1 answer

Distinct cumulative count - PowerPivot, calculated fields and DAX

I have struggled with this problem: Pivot chart cumulative (running in) distinct count I am copying it here for convenience... The idea was to create a cumulative distinct count using this data set: Month ¦ Drink brand ¦ Drink…
zaptask
  • 687
  • 1
  • 8
  • 18
0
votes
1 answer

PowerPIvot Optimization, which column to sort?

I've been told that the best way to compress/optmize powerpivot is to sort on the source table. while it's easy to make that statement. I'm having a hard time determining which is the best columns to sort. As an example, I have a table that includes…
user2669043
  • 97
  • 1
  • 6
  • 12
0
votes
1 answer

Excel / PowerPivot / time series average

I'm stuck on an Excel PowerPivot related problem that I can't seem to get a grip on: I'm trying to measure the volume of customers at each hour and depending on which day of the week I have a table that records the (1) date a customer visited, (2)…
sean s
  • 15
  • 4
0
votes
2 answers

Powerpivot average, only show a range of rows

I have done an average price calculation for apples. See example In the new column "testar", I only want to show the year 1990 - 1994 (yellow cells), since the other years are not specified in my formula. Formula I used for average calculation…
Wizhi
  • 6,424
  • 4
  • 25
  • 47
0
votes
0 answers

Removing Decimals in Power Map

How can I get rid of the decimals for numbers (Circled in Blue) that appear in Power Map? I want the numbers to appear as 323,491 and 2,838,125. I have tried changing the format in the Power Pivot window, the data source where the map pulls from,…
rwilson
  • 2,105
  • 11
  • 18
0
votes
1 answer

PowerPivot - only newest values on current context

I have a problem with PowerPivot. Let's have a look at only 3 columns in my data source: date - clientid - category Category can only be 1 or 2. In the data source you can find often the same clientid for a given time period, sometimes with…
0
votes
2 answers

Create a derived table from a DAX query in PowerPivot?

Is it possible to create a derived table in PowerPivot from a DAX query? For example, the SUMMARIZE function returns a table. But, I haven't found a way to create a table based upon the value returned by this function.
Jason
  • 562
  • 2
  • 5
  • 13
0
votes
1 answer

Dax - Syntax error for variable in Calculated Column

I'm busy learning how to use variables in DAX formulas in PowerPivot for Excel 2013. When put this formula in a calculated column = VAR CurrentPrice = Product[Unit Price] RETURN COUNTROWS ( FILTER ( VALUES ( Product[Unit…
0
votes
0 answers

Calculating the running total of a calculated field

I am trying to calculate the running total of a calculated field/measure by creating another calculated field/measure as I need this for further calculations. using maybe as an illustration…
jonleech
  • 461
  • 1
  • 6
  • 30