On Wed, Sep 6, 2017 at 12:33 PM Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
You write a more appropriate function and use it as
`org-agenda-skip-function'. It could re-use the following snippet:

  (not (member "@work" (org-split-string (org-entry-get (point) "ALLTAGS"))))

TIL about ALLTAGS and other Special Properties.

That org-split-string though needs the separator argument though, right?

(org-split-string (org-entry-get (point) "ALLTAGS") ":")
--

Kaushal Modi