---
urn: "urn:penemure:a9d4275a-656d-4265-b886-dcc5dcb9f8cd"
backend: "pub"
ancestors:
- 📁 Note Logs→ 📁 Penemure
- 📓 End Feb Update→ 📁 Penemure Development Blog
- 📓 Penemure→ 📁 Penemure Development Blog
created: 2025-02-23 12:31:54.355590+00:00
updated: 2025-02-23 12:32:39.146116+00:00
tags:
status: "backlog"
priority: "medium"
---
# 📝 select tasks which changed from any State to completed within a specific time period
## User Stories
- I want to be able to keep a monthly journal that is automatically updated with what got done in that time period
- I want reporting to be easier
- I want to be able to do burndowns of tasks, when they were created, when they were closed.
This really feels like all tasks need a "closed on" date where they went to a terminal state. Maybe that's easier than I thought, but it absolutely requires 📁 Note Logs
## Work on this Issue
(todo, make this a gantt in the template, and add 'self')
```query-table
SQL SELECT
title,
CAST(created AS DATE),
updated - created AS duration
FROM log
WHERE
parents LIKE '%SELF%'
```