For example I have a Project Variable 'Previous Sprint' which is set to a sprint card. I want to display a property of this card ('Percentage Done'). Something like the following would be nice (using say "number" or "card"?) but unfortunately it doesn't work. Is there a way to do this without defining yet another project variable which is a property of the card I want?
Code Snippet
Percentage done:
value query: SELECT 'Percentage Done'
%
WHERE Type = 'Sprint' AND number = (Previous Sprint)
Comments
1 comment
You can reference project variables in MQL to compare against a property on a card. E.g., "WHERE type = Story AND sprint = (Previous Sprint)" to get all the stories in the previous sprint. However, there isn't an ability to use a card project variable to query for the card itself, as in your example.
I have added this to our backlog.
Please sign in to leave a comment.