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, Data Model to select from a data entry table against a list of dates in a separate table

Apologizes for perhaps asking a too-simple question, but I'm unable to solve my problem. I would like to display a running balance of scheduled production yields, lets just say in gallons of milk. I have an entry table that I schedule my milk, and…
evdude100
  • 437
  • 4
  • 18
0
votes
1 answer

Get and Transform Database Connection Security

I have been experimenting with the Get and Transform features. I have hooked up to several of my company’s databases and have created a report to show departmental performance in almost real time. The report provides loads of insight that was never…
Tolvic
  • 125
  • 1
  • 7
0
votes
1 answer

How to use DAX function ALL() with SUMMARIZE()

The following formula returns a scalar value which is the maximum value of the calculation (AvgPerUnit). However, I don't want the maximum value to change based on the context. I always want the value to be based on ALL…
John Donnelly
  • 875
  • 1
  • 10
  • 29
0
votes
1 answer

PowerPivot DAX many-to-many relationship

I have a PowerPivot model and I'm trying to retrieve the corresponding surcharge percent (as a function of VendorID and OrderQty) from a lookup table that contains several order quantity tiers and their associated surcharge percentages. Neither…
btataru
  • 3
  • 2
0
votes
1 answer

PowerPivot: Column - Min(Column)

new to powerpivot here. I have a power pivot table imported from power query as shown below Value Name (blank) 301 - PPFV Parametrics Rl 100 301 - ZLIMrl3Q 100.5 301 - ZLIMrl3Q 101 301 - ZLIMrl3Q …
0
votes
1 answer

DAX Measure - Summing up values between start-end dates in the same table

I have an "Assignments" Table like this: Date    End Date    Allocation1111    Alex    AA    11/20/2016    12/30/2016    0.52222    Eric    BB    10/20/2016    11/30/2016     0.43333    John    CC    10/20/2016    12/30/2016   12222    Eric    DD  …
Scopinho
  • 16
  • 2
0
votes
1 answer

SQL query inside a query

Allow me to share my query in an informal way (not following the proper syntax) as I'm a newbie - my apologies: select * from table where ( (category = Clothes) OR (category = games) ) AND ( …
HimaTech
  • 13
  • 4
0
votes
3 answers

Converting log file to CSV

I have to convert a (Squid Web Proxy Server) log file to CSV file, so that it can be loaded into powerpivot for analysis of queries. So how should I start, any help would strongly be appreciated. I've to use C# language for this task, log looks like…
Ahsan Alii
  • 153
  • 1
  • 16
0
votes
2 answers

Calculating the number of new ID numbers per month in powerpivot

My dataset provides a monthly snapshot of customer accounts. Below is a very simplified version: Date_ID | Acc_ID ------- | ------- 20160430| 1 20160430| 2 20160430| 3 20160531| 1 20160531| 2 20160531| 3 20160531| 4 20160531| 5 20160531| 6 20160531|…
Yarwood
  • 5
  • 2
0
votes
0 answers

PowerPivot / DAX Parent Child Hierarchy function PATH Calculation Error

I'm looking into the Parent Child Hierarchy in PowerPivot/DAX. Below are some useful articles I have found. parent-child-hierarchies-in-tabular-with-denali PowerPivot Denali: Parent child using DAX PATH Function (DAX) However, when I tried to…
qshng
  • 887
  • 1
  • 13
  • 32
0
votes
1 answer

Power pivot - compare to the same weekday

╔═══════╦═════╦═══════╦════════╦═══════╦════════╗ ║ Month ║ Day ║ City1 ║ ║ City2 ║ ║ ╠═══════╬═════╬═══════╬════════╬═══════╬════════╣ ║ ║ ║ Abs. ║ Relat. ║ Abs. ║ Relat. ║ ║ Jan ║ 1 ║ X ║ 10% ║ Z ║ -3% …
blocnt
  • 73
  • 1
  • 8
0
votes
1 answer

Identify first occurence of event based on multiple criterias

I have a dataset in PowerPivot and need to find a way to flag ONLY the first occurrence of a customer sub event Context: Each event (COLUMN A) can have X number of sub events (COLUMN B), I already have a flag that identifies a customer event based…
Marcelo Aguilar
  • 67
  • 1
  • 2
  • 7
0
votes
1 answer

Cumulated count of distinct dates in date ranges using DAX

I'm still new to PowerPivot and tabular models and it's hard work switching from relational DBs. I have two tables in power pivot: Logbook and Calendar - they are not linked. Logbook rows have date ranges specified using [Start Date] and [End Date]…
Sean McLarty
  • 53
  • 10
0
votes
1 answer

how do I match columns in two worksheets in excel

I need to perform a "full-outer-join" scenerio between tabs in an excel workbook. I have a column of items in worksheet1, and a column of items in worksheet2 example: Worksheet1: item1 item2 item3 worksheet2: item1 item2 item4 I am trying to…
arcee123
  • 101
  • 9
  • 41
  • 118
0
votes
1 answer

Power Pivot Calculated field (Teradata)

I imported data from teradata through a query in powerpivot data model. But I am unable to add a calculated field with absolutely any formula using table columns. I tried Calculated Field 1:=Query[AccountsWithOffers] But even this didn't result…