tazm
tazm

Reputation: 91

TFS Query to show items changed yesterday by specific user

How can I create a TFS query that will show items changed within the last day by a specific user?

I need to view what items were completed by the team yesterday.

Upvotes: 9

Views: 10614

Answers (2)

Reza
Reza

Reputation: 19843

You need to create a query with these conditions

  • Team Project = @Project
  • Changed Date = @Today
  • Changed By Was Ever AUser

This will consider if someone else changed the work item after that user as well

Example

Upvotes: 3

Chris Arnold
Chris Arnold

Reputation: 5753

I have assumed that you already know how to create a new query. These are the 3 lines that you'll need to enter into the designer...

  • Team Project = @Project
  • And Changed Date = @Today - 1
  • And Changed By = AUser

Upvotes: 13

Related Questions