Use case or problem
Bases introduced powerful formula properties and dynamic file properties like file.mtime and file.size.
Unfortunately, both can only be used and viewed within a base.
Proposed solution
Add support for the two new property types—file properties and formula properties—to frontmatter in-note.
For example, if we input the following values in note YAML:
---
reading_speed: 250
words: 1000
time to read: "words / reading_speed"
modified time: "file.mtime"
file size: "file.size"
---
The output would be:
---
reading_speed: 250
words: 1000
time to read: "4" # Calculated dynamically based on values of above properties
modified time: "2025-08-01 03:32" # Updated dynamically
file.size: "1 KB" # Updated dynamically
---
A view to create or edit a formula property could be brought up when opening the context menu for the formula property type.
In particular, the dynamic modified time property would be amazing and is in high demand:
In my experience, the community plugin solutions that accomplish this are unreliable.
Current workaround (optional)
- Open a base in another tab, embed it in-note or put it in sidebar.
- Use inline Dataview queries.
- The Virtual Content plugin.
- Third-party plugins that update the
modified timeproperty—can be unreliable. - Manual property updates.