Hi Alexander,
Alexander Baier <[email protected]> writes:
> (setq org-agenda-custom-commands
> '(("d" "Test Tag Filter"
> ((agenda ""
> ((org-agenda-files '("~/org/WeeklyFilterTest.org"))
> (org-agenda-filter "-EXCL")))))))
You need to locally bind `org-agenda-tag-filter-preset' to a list of
tags like '("-EXCL").
I did not test, but this should be okay:
(setq org-agenda-custom-commands
'(("d" "Test Tag Filter"
((agenda ""
((org-agenda-files '("~/org/WeeklyFilterTest.org"))
(org-agenda-tag-filter-preset '("-EXCL"))))))))
PS: You're right that org-agenda-filter does not exist.
--
Bastien