I am trying to create a WebI report with just a single input date, from a prompt, and then get n time slices, weeks or months, after it(max of 12).
For example param_input = 1/1/12 and also there is an input of 'n'.
I thought I would try a query filter on the weekly time slices and then do a
between param_input and RelativeDate(param_input, 7*n)
.
But the query builder isn't liking the dynamically-created date.
Is there anyway to dynamically get that second date or do I just need to have two dates provided?
Or alternatively is there a way to just pull down 12 slices and just filter down to the first n values?