Any way to list in a note the last modified notes?

What I’m trying to do

I am using Obsidian to make a wiki for my work team.

I would like to know if exits a way to show the last modified notes, to show in the front page the “news” (the last updated articles).

I have searched but only found plugins to show recent files opened in the obsidian gui, what I want it’s to include this information for users in a note. So they can know what articles have been updated by other users.

Regards

Here is what I use:

- 🗄️ Recent file updates
       `$=dv.list(dv.pages('').sort(f=>f.file.mtime.ts,"desc").limit(4).file.link)`

Blockquote

1 Like

Thanks.

I have done something very similar, but adding a boolean property “novedad” (novelty in spanish) to be able to choose what articles to show and with the following code

## Novedades

```dataview
table without id
	link(file.link, title) as "Artículo",
	updated as Modificación
where
	novedad
sort
	updated desc

What I am unable to do is to add a dataview block inside a column using obsidian-columns plugin.

I suppose it’s not possible or easy to do (I have used properties in columns to alter how they are shown and I have been unable to get a correct syntax to do it).

The plugins “Vault Changelog”, “Daily Activity”, or “Activity Logger” might do.

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