Skip to content
Burndown
  • Pages
    • Rethinking Burndown
    • Tasks
      • Kanban
    • tablered
      Supporting Tables
      • Sprints
      • T-shirt size
    • icon picker
      Snapshots
      • ForEach Working space
    • Metrics / insights / reporting
      • Burndown by sprint
      • Volume over time
Share
Explore

Snapshots

There’s an that runs a daily snapshot of all the tasks (when you turn it on), but you can also press this button here 👇
Take Snapshot

//Give me the list of tasks that are in the current sprint or future sprint
Tasks.Filter([In current sprint?]=true OR [Future sprint?]=TRUE)
//For each of the tasks in that list
.ForEach(
// Add a row in the Log table
AddRow(Log_Step3,
//Task name is the task object/key (current value)
Log_Step3.[Task Name],CurrentValue,
// Points remaining is the "points remaining" unless the task hasn't started yet, then take the points estimated
Log_Step3.[Points remaining],If([Points remaining]>0,[Points remaining] ,[Points Est.] ) ,
// Date stamp is today
Log_Step3.[Date stamp],Today(),
//And give me the active sprint that the task is in, unless it's a future sprint, then give me that sprint.
Log_Step3.Sprint,[Sprint(s)].Filter(Current=true or [Start date]>Today())
)
)
View of Snapshot
Snapshot Date
Sprint
Task
Status
Remaining points
8/6/2024
5
4
10
4
8/8/2024
0
1
10
4
8/12/2024
1
5
8
8/21/2024
1
2
4
13
5
Snapshot
There are no rows in this table

 
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.