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

DAX measure to calculate how many days each store was open

I am trying to write a measure that calculates the number of days each store was open each month. I have Open Dates for each store and the value that this measure should take for each store is either all days of the month such as 31 days in January…
Dab
  • 1
  • 2
0
votes
1 answer

Avoid DISTINCTCOUNT in PowerPivot

Due to performance issues I need to remove a few distinct counts on my DAX. However, I have a particular scenario and I can't figure out how to do it. As example, let's say one or more restaurants can be hired at one or more feasts and prepare one…
Victor
  • 1,163
  • 4
  • 25
  • 45
0
votes
1 answer

Locating SQL behind PowerPivot Data Model

I have a PowerPivot data model using Excel 2013 that someone has given me. However, I can't find the SQL code used to pull in the tables from the data warehouse for the model. I'm fairly new at this. Is there a way to find the code behind the model?…
FoxyB
  • 41
  • 2
  • 3
  • 10
0
votes
1 answer

Possible to set default slicer value in PowerPivot

We have a Power Pivot report that displays some financial information given a current date range. While I can write some SQL or DAX to limit the entire dataset to that date range, I'd rather the workbook contain a large window of transactions -- but…
0
votes
1 answer

Dashboard from Azure SQL Database

I have a SQL Database on Azure and I want to share some information with two friends. And so I've created 3 VIEWS with that info. The idea is to develop an easy solution to share a dashboard. I was thinking to: Make a powerpivot with that 3…
0
votes
1 answer

Excel DAX function add value above in column

I'm trying to create a report that shows the current supply of incidents per week. I've got a table "Processing" with 5 columns: "Year", "Week", "Created", "Closed" and "Supply" The calculation I need to use is "Created"-"Closed" + "Supply" from…
Ryflex
  • 25
  • 4
0
votes
1 answer

Reorganizing data in a different layout in Excel

I would like to change the structure of a dataset so as to be able to extract information easily. Here is my example: I have 5 portfolios, each of them containing different number of shares of different products. The information is stored in the…
Egodym
  • 453
  • 1
  • 8
  • 23
0
votes
1 answer

How to compare columns for related records in the same Power PIvot table (DAX)

I have a fact table consisting of schedule data tracked over many months. An activity will have an entry for each month. I want to see if an activity started and finished on time by comparing each activity's start and finish dates to the previous…
marshallbanana
  • 435
  • 1
  • 4
  • 9
0
votes
1 answer

DAX Cumulative Total Comparison from Different Tables

How do I create a DAX measure that will show me the First Receipt Date where the Receipt Balance is greater than or equal to the Payment Balance? For example, for Jun, I want the [Payment Receipt Date Avg] measure to show as Jan because the Receipt…
Christopher Tso
  • 341
  • 5
  • 18
0
votes
1 answer

Ignore filters on metric (in row)

I just realized that a lot of my calculations are off because I have one metric which relies on looking at many years of data. However, on all PivotTables where I have to show this metric (which should ignore filters) - it applies the date ranges…
NickP
  • 1,354
  • 1
  • 21
  • 51
0
votes
2 answers

Is it possible to use the Excel Solver in combination with a Power Pivot table in Excel

I have tried to optimize the outcome of a Pivot table by using the Solver to modify the inputdata of the Pivottable. It seems to me this is not possible because the Pivottable is not updating automatically after altering the inputdata. So if the…
Marcel
  • 115
  • 2
  • 15
0
votes
1 answer

PowerPivot get excluded data from Access

Sample Data I have a Access, which has more than 1 million rows of data, as you can see from the screenshot. I want to dedupe the data in term of BRUIDREQID, as it has duplicates. Is there any way that when I connect data from Access to PowerPivot,…
Zed Fang
  • 823
  • 2
  • 13
  • 24
0
votes
0 answers

How to strip the time off a date column in Powerpivot 2013

I'm attempting to strip the time from my date column in Powerpivot 2013. I tried this: =DATE (YEAR([Completion Date]), MONTH([Completion Date]), DAY([Completion Date])) However, this is not working. Any ideas?
FoxyB
  • 41
  • 2
  • 3
  • 10
0
votes
1 answer

DAX First Occurance in SUMMARIZE, FIRST_VALUE equivalent

I'm trying to create a DAX query to combine several records withing the same table and extract some values from these combined records. The result should display not only the min and the max of start and stop time, but also the corresponding first…
Rien
  • 23
  • 1
  • 4
0
votes
1 answer

how to neglect "not effective customer group"?

DimGroupCustomer Table ╔═══════════════╦═══════════╦══════════════╗ ║ CustomerGroup ║ Customer ║ GroupCardKey ║ ╠═══════════════╬═══════════╬══════════════╣ ║ A ║ Customer1 ║ ACustomer1 ║ ║ A ║ Customer2 ║ ACustomer2 ║ ║…
Phyo Min Yu
  • 153
  • 1
  • 10