How to use Power Pivot

jak82

Board Regular
Joined
Apr 28, 2016
Messages
146
Right were basically finding the pivot tables in excel are not up to scratch when dealing with large amounts of data.

We have been told that power pivot utilizes the processors better. (Going to have to learn DAX)

If I have the year column which shows 2015 2016 how can I add a column which minuses the 2015 data from 2016.

The column with 2015 2016 is called 'year' I need to add a column which subtracts.

Thanks

Chris
 
Last edited:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
It is going to depend on the particular model, and you will probably want to totally separate calendar table, and really you should grab Matt or Rob's book... but in general, you will have something like this:

Total Sales := SUM(Sales[Amount])
Total Sales - PY := CALCULATE([Total Sales], PREVIOUSYEAR(Calendar[Date]))
Total Sales - Delta := [Total Sales] - [Total Sales - PY]
 
Upvote 0
Thanks Scott Just noticed this, will have a shot

What does the Calender Date refer to? I have referenced this to the insertdate column in my table and it seems to be coming up blank?

Thanks
 
Last edited:
Upvote 0
In my total sales I have

Code:
Total Sales:=SUM([Column3])
Total Sales: 12345678.069915

in the previous year I have

Code:
Total Sales Past Year:=CALCULATE([Total Sales], PREVIOUSYEAR(People[dateins]))
Total Sales Past Year: (blank)

For some reason it is not picking up the previous year.

Thanks
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,779
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top