What I’m trying to do
i want to get all the list items from all the files that start with a date
my use case is that whenever i do something i will make a list item starting with a date that something has been done , i want to be able to view all the items as a log combined in a single file.
Things I have tried
TABLE L.text
FLATTEN file.lists AS L
WHERE contains(L.text, "logs")
with this i am able to get all list items that contain the word logs , but with this i have to enter the word log everywhere , i want it to work if a date is added
example
- 2024-01-26 task one complete
- 2024-02-27 status of server is ok
- 2024-03-01 backup running ok
etc
curently i have to do
- 2024-01-26 logs task one complete
- 2024-02-27 logs status of server is ok
- 2024-03-01 logs backup running ok
(i also tried using tasks plugin for this but that has checkboxes , and i liked the task plugin so much that i started using it for tasks , and now i need something else for the logs, i dont want them to mix )