Hi,
I have several Sprint on different projects and I want to show them together on my report.
Example:
Project1 has ‘Sprint 1 P1’, Project2 has ‘Sprint 1 P2’ and so on… I want to show all the issues on Sprint 1 no matter what project it is.
I was thinking on some like:
Aggregate({
CASE WHEN [Measures].[Issue Sprint] MATCHES ‘Sprint 1*’
THEN
‘Sprint One’
END
})
But I have the error 'No Function matches signature ‘{}’
Any clue?