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

Unable to Create a Sub-Total in the POWERPIVOT

I am pretty new with POWERPIVOT tables. I have searched for a bit of time now to resolve my problem but I have been unsuccessful so far. As you can see below, I have created a POWERPIVOT table in Excel 2013 that is composed of two FACT tables, which…
0
votes
2 answers

Check for a duplicate within powerpivot on the fly

In my organization various sales personnel could be part of many sales transactions, and I have a table below that shows for each sales personnel the amount revenue they were part of. However, depending on how a user is using the table, the pivot…
user2669043
  • 97
  • 1
  • 6
  • 12
0
votes
2 answers

DAX formula for - MAX of COUNT

I have the below dataset: using the measure: BalanceCount := COUNT(Balances[Balance]) which gives me the result: However, I want the Grand Total to show the maximum amount of the BalanceCount, which is 2.
Christopher Tso
  • 341
  • 5
  • 18
0
votes
1 answer

Import external .txt table to PowerPivot using VBA?

I'd like to import some .txt tables to PowerPivot without clicking "From Other Sources" --> "Text File", but rather by running a VBA macro. The idea is that there are several .txt tables, say C:\Table1.txt C:\Table2.txt C:\Table3.txt etc. and to…
Jerros
  • 11
  • 1
  • 8
0
votes
1 answer

Renaming CUBEVALUE function to something shorter?

I've been using a rather long embedded CUBEVALUE() function, which is a pain to work with. It looks something like: =IFERROR(VALUE(CUBEVALUE(arg1;arg2;arg3));CUBEVALUE(arg1;arg2;arg3)) Due to the CUBEVALUE function and its arguments, it's becoming…
Jerros
  • 11
  • 1
  • 8
0
votes
1 answer

Display grouped data from PoverPivot in Excel using PivotTable

I have a table in PowerPivot that contains UserID, DatabaseID and CorpID. I need to display a the list of corpID's for the user that have no DatabaseID. Currently I am doing it by having a filter on the UserID and having DatabaseID as a column and…
Mike
  • 39
  • 1
  • 5
0
votes
1 answer

Pivot Table Sum Column for Measure Total

I have a problem on my hands. I'm learning DAX and I'm having a tough time with a problem that involves aggregating absolute values. In a Pivot Table I want to be able to have a ratio of (absolute value of ((# of Employees) - (# of Recommended…
Walker
  • 153
  • 2
  • 9
0
votes
1 answer

DAX sum different DateTime

I have a problem here, i would like to sum the work time from my employee based on the data (time2 - time 1) daily and here is my query: Effective Minute Work Time = 24. * 60 * (LASTNONBLANK(time2,0) -FIRSTNONBLANK(time1,0)) It works daily, but if…
0
votes
1 answer

Oracle view columns empty

We use commodity trading software linked to an Oracle database to export reports to Excel. I'm connecting to this Oracle database using PowerPivot as well as SQL developer. In doing so, I'm able to connect to Oracle directly creating live,…
Evans
  • 3
  • 5
0
votes
3 answers

LOOKUPVALUE function in worksheet?

In Excel PowerPivot, I can use a simple DAX function to search for a value inside the database using LOOKUPVALUE like this: LOOKUPVALUE('data'[Value];'data'[Person#];2;'data'[TekstCode];"Z2";'data'[Time];"2014Q4") This will return an output…
Jerros
  • 11
  • 1
  • 8
0
votes
1 answer

Calculating a Net of Adds and Deletes in PowerPivot

I have data in a PowerPivot data model with two different date fields, one for the added date, and another for a removed date. I would like to create a calculation that will allow me to summarize a net change by month. Meaning I want to aggregate…
Joe
  • 23
  • 1
  • 6
0
votes
1 answer

An outer join Excel Power Pivot Pivot table?

I have a PowerPivot with two tables one contains a list of facilities, their type (active/inactive) and whether they belong to org A or org B (FaciltyID|Active/Inactive|ORG) Another table has a list of users and facitilites assigned to them + their…
0
votes
1 answer

Power Pivot previous value

I have the following table & data that can be seen in Excel PowerPivot item, timeframe, total 1, 1, 15 1, 2, 20 1, 3, 15 2, 1, 10 2, 2, 11 2, 3, 10 While I can easily get the last timeframe, I need to get the previous timeframe's total like: item,…
Randy Walker
  • 153
  • 1
  • 9
0
votes
1 answer

Powerpivot DAX Rank products by quarterly sales with monthly data

I'm trying to create a calculated column that assigns a rank to each Product based on its sales in each combination of Country, Store, and Quarter. However, the data in the table is monthly. I was thinking of using SUMMARIZE() to create the…
0
votes
1 answer

PowerPivot remove subtotals by default

Is there a way eliminate subtotals by default in PowerPivot? If fields are selected, it is possible to manually remove the subtotals from the worksheet. However, after removing and then re-adding the fields I see subtotals again. If possible,…
user95488
  • 129
  • 2
  • 11
1 2 3
99
100