Files
ITManager-Vault/99 System/Templates/Vendor Template.md
2025-09-22 14:27:07 -05:00

31 lines
429 B
Markdown

---
Title:
Company: "[[]]"
Address:
City:
ZIP:
State:
Phone:
Fax:
E-mail:
---
### Renewals
```dataview
TABLE without id file.link AS Renewal, DueDate, Note, Vendor
FROM ""
WHERE contains(file.tags, "renewal")
AND Vendor = this.file.link
SORT Due ASC
```
### Quotes
```dataview
TABLE without id file.link AS Renewal, DueDate, Note, Vendor
FROM ""
WHERE contains(file.tags, "quote")
AND Vendor = this.file.link
SORT Due ASC
```