Forum Discussion
Anonymous
6 years agoNot applicable
How to create sub table based on other table
Hi, I am syncrhonizing data from VSTS (Azure Devops) - Analytics View. I want to create a table based on last 30 days historical table which I fetch from Analytics plugin. I was able to b...
- Anonymous6 years ago
Hi Anonymous ,
You can try to use following calculate table formula to create a expand table with all detail date records:
New Table = VAR _calendar = CALENDAR ( MIN ( Table[Iteration Start Date] ), MAX ( Table[Iteration End Date] ) ) RETURN FILTER ( CROSSJOIN ( SUMMARIZE ( Table, [Path], [Iteration Start Date], [Iteration End Date] ), _calendar ), [Date] >= [Iteration Start Date] && [Date] <= [Iteration End Date] )Regards,
Xiaoxin Sheng
arsaveli
6 years agoHelper I
You can also get Iterations directly from odata, if you want complete list of iterations (not just iterations in your work items), using following query:
VSTS.Feed("https://analytics.dev.azure.com/{organization}/{project}/_odata/v3.0-preview/Iterations")