vote up 0 vote down star

I would like to modify the Team Foundation Server built-in MS Agile template reports to exclude weekends.

For example, here is the dsWorkItemHistory dataset for the Remaining Work report:

WITH
MEMBER [Measures].[Date Key] AS
    [Date].[Date].CurrentMember.UniqueName

SELECT
  {
    [Measures].[Date Key],
    [Measures].[Cumulative Count]
  } ON COLUMNS,
  (
    [Work Item].[System_State].[System_State],
    (StrToMember(@StartDateParam):StrToMember(@EndDateParam))
  )
  ON ROWS
FROM [Team System]
WHERE
(
  STRTOMEMBER("[Team Project].[Team Project].["+@Project+"]"),
  STRTOSET(@IterationParam),
  STRTOSET(@AreaParam),
  STRTOSET(@WorkItemTypeParam)
)

I am totally unfamiliar with MDX. Any pointers toward customizing the data returned to exclude weekends is appreciated.

flag

In your title, you want to exclude weekends, but in your post, you ask about excluding weekdays...you might want to clarify which is correct. – Thomas Owens Jul 31 at 17:20
Oops, fixed. weekends are what I want to exclude. – Aidan Ryan Jul 31 at 17:37

1 Answer

vote up 0 vote down

Use the datepart function with the dw part to exclude saturday and sunday.

SYNTAX: DATEPART ( datepart , date )

in this case datepart = dw or weekday and date is the date field in your query

link|flag
Where exactly would this fit into the query in the question? – Aidan Ryan Aug 29 at 2:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.