英文:
Azure Devops Query to find Daily hours spent on Work item
问题
我需要找出一个资源在一个任务上花费的时间。
假设:
- 有3个任务(任务-A、任务-B、任务-C)
- 有3个用户(用户-A、用户-B、用户-C)
- 所有任务的初始估计时间为8小时
- 第一天,所有用户都在各自的任务上工作了2小时
所以我应该得到一个结果是2。
我正在使用Azure工作项查询来计算和显示结果。
英文:
I have to find out time spend by a resource on a Task.
let say,
- There are 3 Task (Task-A,Task-B,Task-C)
- There are 3 User (User-A,User-B,User-C)
- All the Task have Original estimate of 8 hours
- on Day 1 All the User have work 2 hours on their respective tasks
So I should get a result of 2
I am using Azure Work Item query to calculate and display the results.
I am not understanding what should be done to calculate the daily work done on a task.
答案1
得分: 4
对于这个问题,你可以在查询中添加 已完成工作 和 剩余工作 列。这可以显示任务已花费的时间以及查询中剩余的工作小时数。根据这两个字段,你可以计算工作项每天花费的小时数。
英文:
For this issue , you can add Completed Work and Remaining work column to the query.This can show the hours the tasks has spent and remaining work hours in the query.
Based on these two fields, you can calculate the daily hours spent on work item.
答案2
得分: 3
以下是已翻译的内容:
Azure DevOps 查询以查找工作项上每日花费的时间
据我所知,Azure DevOps 不侧重于微观管理,而是专注于低价值指标。
因此,Azure DevOps 不会跟踪每天花费的时间,而是跟踪总共花费的时间。如果您想要每个人每天的时间值,您将需要查看迭代/工作项历史记录并计算运行差异。
如果您真正需要每个人的工作项的时间报告,我建议您查看第三方工具,比如 Timetracker:
新版本 5.0 的新增功能!个人、团队和自定义报告由基于 REST 的第三版报告 API 驱动。7 种可定制的小部件类型,让您以所需的方式查看数据。除了 Reporting 中的六个默认报告外,用户还可以为个人或团队创建自定义报告。
希望这对您有所帮助。
英文:
> Azure Devops Query to find Daily hours spent on Work item
AFAIK, Azure devops does not focus on micromanaging and focus on low value metrics.
So, Azure devops doesn't track the time spent on a per day basis. It keeps track of the total time spent. If you want a per person per day value, you'll have to go through the iterations/workitem history and calculate the running difference.
If you really looking for a TimeReporting for the work items of per person, I suggest that you take a look at a third party yool like Timetracker:
> New to version 5.0.! Individual, team, and custom reports powered by
> version 3 of the REST-based reporting API. 7+ customizable widget
> types that let you see data that you need, how you need it. In
> addition to the six default reports in Reporting, users can create
> custom reports for individuals or teams.
Hope this helps.
答案3
得分: 1
你可以使用 Analinics Views and Power BI。例如,你可以添加自定义视图:
然后在 Power BI 中使用它:
英文:
You can Analinics Views and Power BI. For example, you can add your custom view:
Then use it in Power BI:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论