time intelligence and combing measures

srdirect

New Member
Joined
Jul 11, 2014
Messages
12
HI ALL in my workbook I have many years of data, (in one table) I also have a Table of all dates (for the next 10 years or so)



what I am trying to do is have the last 12 months of data plus 2 more measures (a) giving a sum of YTY measure and (b) aggregating last 3 months

such that report will look like


-| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | YTY | 3 Months
rows


is their a way to combine the data fields such that it shows this way?

thanks in advance...
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
The other way to do this is via a disconnected table. If you have a table with a column holding "1", "2", ..."12", "YTY", "3 Mo"... you could put it on columns.

You then write a wacky measure which detects which column you are on...
=IF (VALUES(MyTable[Wacky]) = "1", [1 Month Ago Measure],
IF (VALUES(MyTable[Wacky]) = "YTY", [YTY]
...
 
Upvote 0

Forum statistics

Threads
1,215,790
Messages
6,126,914
Members
449,348
Latest member
Rdeane

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