Please help me in parameterize to push in SSRS report for Assigned_to and date parameters please help to resolve thisselect {[Measures].[Microsoft_VSTS_Scheduling_OriginalEstimate], [Measures].[Microsoft_VSTS_Scheduling_CompletedWork], [Measures].[Microsoft_VSTS_Scheduling_RemainingWork] --,} on 0,non empty([Work Item].[System_AssignedTo].children, [Team Project].[Project Node Name].children,[Work Item Linked].[System_Id].children,[Work Item Linked].[System_Title].children,[Work Item].[System_Title].children,[Work Item].[Microsoft_VSTS_Common_ActivatedDate].children,[Work Item].[Microsoft_VSTS_Common_ClosedDate].children) on 1-- Date range of ActivatedDate to look at when tasks were activated.from ( select filter ([Work Item].[Microsoft_VSTS_Common_ActivatedDate].Children ,CDate([Work Item].[Microsoft_VSTS_Common_ActivatedDate].Item(0).MemberValue) >= CDate("2016-06-05 00:00:00") --beginningdate AND CDate([Work Item].[Microsoft_VSTS_Common_ActivatedDate].Item(0).MemberValue) <= CDate("2016-08-11 00:00:00") --end date ) ON COLUMNS-- Using this links filter to only show user story/requirement to associated tasks combos, not other link types.from ( select { [Work Item Linked].[System_WorkItemType].&[User Story] ,[Work Item Linked].[System_WorkItemType].&[Requirement] } ON COLUMNSfrom [Team System] ))
↧