...
Assume you have setup a grid to track a checklist as detailed inĀ Issue type specific checklist. The grid contains following columns
- Summary
- Responsible
- Status
You need to know which issues still have 'open' checkitems.
...
which returns all issues having a checklist where one of the rows has status 'open'
You can combine different criteria, like for example to select all the issues where the user 'Angelina Jolie' is responsible for a specific checkitem:
Panel |
---|
issue in grid("grid checklist", "status = 'Open' and responsible_name like 'Angelina%'") |
Related Articles
...