I've been able to wrestle a Date dimension Timeline into my Excel 2013 OLAP Pivot table by setting the ValueColumn and NameColumn for the dimension and key as described elsewhere. Unfortunately, no filter setting in my Timeline returns any results!
When I select a date or range of dates in the Timeline, all cells disappear from the Pivot. This happens even when I select the entire range of dates in the Timeline. When I clear the filter, the entries reappear. Here is the MDX from OLAP PivotTable Extensions:
SELECT FROM (SELECT ({[ThroughDate].[Date].&[2013-09-10T00:00:00],[ThroughDate].[Date].&[2013-09-09T00:00:00],[ThroughDate].[Date].&[2013-09-06T00:00:00]})
ON COLUMNS FROM [TotalVu]) WHERE ([Measures].[Amount])
If I use a conventional Slicer on my Date dimension, the Pivot displays results as expected. When I select a single date or date range, the Pivot shows values for the date range selected. Here is the MDX fromOLAP PivotTable Extensions:
SELECT FROM (SELECT Filter([ThroughDate].[Time Key].Levels(1).AllMembers, ([ThroughDate].[Time Key].CurrentMember.MemberValue>=CDate("2013-09-06") AND [ThroughDate].[Time Key].CurrentMember.MemberValue<CDate("2013-09-11")))
ON COLUMNS FROM [TotalVu]) WHERE ([ThroughDate].[Date].[All],[Measures].[Amount])
Can anyone tell me why this Timeline fails?