Latest Created Notes

How can I search or find the latest created notes (history of created notes)?

It’s possible to find history of searched notes but can’t find the option to find a list of latest created notes.

What I’m trying to do

Not sure if Obsidian has something built-in for this. But if you install the dataview plugin you can create your own views with this kind of info.

For example the following code would be used to create a table with the 30 most recently created files, sorted by creation timestamp:

TABLE file.ctime
SORT file.ctime DESC
LIMIT 30

(I recommend putting a limit on it, else it will try to show all of your notes)

Super thank you! Will do.
I also just find out that putting front slash in the search box with sort option to created time does the trick

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.