Hi Joel,
Still trying to diagnose why our Remaining Work Trend chart is coming blank today (the start of our June 11, 2012 sprint 14). I turned off all other dashboard widgets except for Remaining Work Trend via the dashboard's configuration settings. Then I turned SQL Server profiler to trace the query being used against the TFS analysis service. I see the following MDX query is executed. And when I run this query it is coming back with a value of 209 (which is the correct value for remaining work.
Sidenote: Interestingly, this query from the dashboard is emitting a query that filter's on the current dates of 2012-06-11 through 2012-06-24. This would indicate to me that this query is indeed filtering to the current iteration. This is odd because my testing last week clearly showed that it was totalling all open tasks.
But more importantly getting our dashboard's Remaining Work widget working again is most important. Any thoughts? Thanks Patrick
SELECT
NON EMPTY [Work Item].[System_State] on COLUMNS,
NON
EMPTY CrossJoin( [Team Project].[Team Project Hierarchy].&[{539e50ef-3343-4615-b134-3639e5ade962}], [Work Item].[System_WorkItemType] ,
Filter
([Date].[Date].Members, ([Date].[Date].CurrentMember.MemberValue>=CDate("2012-06-11")
AND
[Date].[Date].CurrentMember.MemberValue<CDate("2012-06-24"))) ) ON ROWS from [Team System]
WHERE ([Measures].[Microsoft_VSTS_Scheduling_RemainingWork])