chart list for development months
hi
I have a chart which is showing months 1 to 60+, i was wondering if its possible to show 1 to 24 then from there going in multiples of 3? so 27 30 33 etc...?
4 replies
-
Hi Nicholas Campbell ,
Interesting question.
I have an idea using a custom list:
range(1, 24)
+
filter(range(27, end), caption is divisible by 3)
in PQL it should look something like this:
{
range([Date].[Week Number].[1], [Date].[Week Number].[24])
,
filter(
range([Date].[Week Number].[27], [Date].[Week Number].[60]),
number([Date].[Week Number].caption) % 3 == 0)
}
Imbar -
Hi
Sorry I should have stated so its not a week number as such its a development month so in the data its just 1,2,3,4,5 etc with no time intelligence,
Thanks for the prompt response though :) much appreciated.
-
hero it works!!! thanks much appreciated :)