TFS request to display items modified by a specific user yesterday

How can I create a TFS request that will show items that have been modified by the user in the last day?

I need to see what elements were executed by the team yesterday.

+6
tfs visual-studio tfs-workitem
source share
1 answer

I assumed that you already know how to create a new query. These are 3 lines that you will need to enter into the constructor ...

  • Team Project = @Project
  • And the modified date = @Today - 1
  • And changed By = AUser
+10
source share