Reputation: 1
I am attempting to run a query in Rally Addin for Excel but am getting a ambiguous error, no idea how to resolve, can you assist? This is the query:
((((State != Closed) AND (CreationDate <= 2015-02-10)) AND ((Severity = Crash/Data Loss) OR (Severity = Major Problem))) AND (Iteration != Iteration 34))
The error is:
Could not parse: Error parsing expression -- expected ")" but saw "Loss" instead.
Upvotes: 0
Views: 263
Reputation: 33667
As you confirmed in a comment, you just need some quotes, ie
((((State != Closed) AND (CreationDate <= 2015-02-10)) AND
((Severity = "Crash/Data Loss") OR (Severity = "Major Problem"))) AND
(Iteration != "Iteration 34"))
Upvotes: 1