Forum Discussion
Dynamic Table with extrapolated dates
- Anonymous8 years ago
Hello all,
I was able to solve my problem using a DAX calculation to create a burndown chart.
I created a calendar and then added columns for each of the subgroup. Then I used the DAX expression for each subgroup to count up all open orders on each given day.
Subgroup1 = COUNTROWS(FILTER(tablename,
(tablename[baseline]=1) &&
(tablename[action] = "Orderbeingvalidate" ||
tablename[action] = "InfulfillmentQueue") &&(tablename[last_update] >= 'Backlog Calendar'[Date]) &&
(tablename[subgroup] = 1)))
Anonymous,
I am not clear about the logic that you use to get the expected table from the sample data in original table. Could you please explain it by taking the first row data of Anticipated table as example ?
Regards,
Lydia
- Anonymous8 years agoNot applicable
Hello all,
I was able to solve my problem using a DAX calculation to create a burndown chart.
I created a calendar and then added columns for each of the subgroup. Then I used the DAX expression for each subgroup to count up all open orders on each given day.
Subgroup1 = COUNTROWS(FILTER(tablename,
(tablename[baseline]=1) &&
(tablename[action] = "Orderbeingvalidate" ||
tablename[action] = "InfulfillmentQueue") &&(tablename[last_update] >= 'Backlog Calendar'[Date]) &&
(tablename[subgroup] = 1)))