-
I have defined a custom report:
When I run just this report, it returns 24 tasks:
But when I try to perform a bulk modification to the tasks in that report, I get "no matches":
Does anyone know - is this user error, or a known bug? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @rob-bc, filtering by report names as in the example you suggest is not currently possible (as far as I know, this was never supported 😿). You, can, however, simply duplicate the report's filter (which is in this case relatively easy):
This can be even done dynamically, one can use
though that might not be convenient for the direct use on the CLI (but could be useful in scripts). That said, I think what you're looking for could be best served by the context feature. Defining a context with a filter
would only affect the tasks that match Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi @rob-bc,
filtering by report names as in the example you suggest is not currently possible (as far as I know, this was never supported 😿). You, can, however, simply duplicate the report's filter (which is in this case relatively easy):
This can be even done dynamically, one can use
_get
command together with the DOM model in order to get the flter dynamically:though that might not be convenient for the direct use on the CLI (but could be useful in scripts). That said, I think what you're looking for could be best served by the context feature. Defining a context with a filter
status:pend…