Hello, I have the following custom agenda command: (setq org-agenda-custom-commands '(("ww" "Work 2 day view" ((agenda "" ((org-agenda-files '("~/tmp/tmp.org")) (org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp ":@work:")) (org-agenda-start-on-weekday nil) (org-agenda-span 2) (org-agenda-overriding-header "\n2 day work view\n-----------------\n"))))))) Given the sample file below: * Top heading with tags :@work:admin: ** Next heading (inherited tags) SCHEDULED: <2017-09-04 Mon> ** Next heading (explicit tags) :@work:admin: SCHEDULED: <2017-09-04 Mon> The agenda will only display headings that have the tag explicitly defined. In this case, "Next heading (explicit tags)". Is there a way I can convince the agenda to honour inherited tags in this case? Cheers, Adrian