vault backup: 2026-06-17 05:37:48
This commit is contained in:
@@ -59,3 +59,10 @@ FROM "Infos/Kontakte"
|
||||
WHERE birthday.month >= 04 AND birthday.month <= 06
|
||||
SORT birthday.month, birthday.day
|
||||
```
|
||||
|
||||
```dataview
|
||||
TABLE BDAY as Geburtstag, truncate(string(date(today) - BDAY),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE BDAY.month >= 04 AND BDAY.month <= 06
|
||||
SORT BDAY.month, BDAY.day
|
||||
```
|
||||
|
||||
@@ -65,11 +65,11 @@ journal-end-date: 2026-06-21
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
TABLE BDAY as Geburtstag, truncate(string(date(today) - BDAY),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month >= 06 AND birthday.day >= 15
|
||||
WHERE birthday.month <= 06 AND birthday.day < 22
|
||||
SORT birthday.day
|
||||
WHERE BDAY.month >= 06 AND BDAY.day >= 15
|
||||
WHERE BDAY.month <= 06 AND BDAY.day < 22
|
||||
SORT BDAY.day
|
||||
```
|
||||
|
||||
> [!note]- Erzeugte Notizen
|
||||
|
||||
Reference in New Issue
Block a user