Last active
August 3, 2022 02:45
-
-
Save amadrzyk/d54b0ec70cc43c89936b40d98b28c581 to your computer and use it in GitHub Desktop.
Notion – Last Updated (Days Ago)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if( | |
| dateBetween( | |
| now(), | |
| prop("Last Edited Time"), | |
| "days" | |
| ) == 0, | |
| "Today ✅", | |
| concat( | |
| format( | |
| dateBetween( | |
| now(), | |
| prop("Last Edited Time"), | |
| "days" | |
| ) | |
| ), | |
| " days ago" | |
| ) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment