Viewing 15 posts - 61 through 75 (of 424 total)
you'll have to create your own interface to do that.
August 12, 2008 at 11:59 am
Mark Eytcheson (8/11/2008)
row group:
matrix1_purchaser - grouped on "PURCHASER"
column groups:
matrix1_PromiseYear - grouped on "PromiseYear"
matrix1_PromiseMonth - grouped on...
August 12, 2008 at 11:55 am
when using a matrix, all detail cells should use an aggregate function even if you know there's only one value. the matrix's subtotals will then be based on that...
August 12, 2008 at 11:22 am
the subtotal's calculation is based on the detail cell. change the detail cell to use sum(...) instead of first(...).
August 12, 2008 at 8:31 am
steve (8/11/2008)
August 11, 2008 at 2:43 pm
marcelo (8/8/2008)
No, because my querys using MDX and differents hierarchys.Any suggestion?
no simple ones. as you've discovered, you can't access the intermediate summaries of a matrix. (in the...
August 10, 2008 at 11:19 am
marcelo (8/8/2008)
there is one dataset for each matrix.
Oy! Can the datasets be combined?
August 8, 2008 at 9:28 am
depends on how many reports he has to do and when they have to be done. since the sql is coming from existing code, making 'improvements' may open up...
August 8, 2008 at 8:56 am
you'll need group on the following expression to get the week:
CInt(datediff( day, [first date of report], [date column] ) / 7)+ 1
August 8, 2008 at 8:54 am
jason.griffith (8/8/2008)
Still getting error messages, whether I use my code or yours.
you do realize that if you'd go back to your original code and replace @holidayTbl with @HolidayTbl (as noted...
August 8, 2008 at 8:44 am
are the two matrices coming from 2 datasets or 1 dataset? if it's a single dataset, then create another matrix with a single row grouping that equates to whatever...
August 8, 2008 at 8:39 am
giontech (8/7/2008)
I have a matrix with two column groupings and subtotals for each of them, but I can't find a...
August 8, 2008 at 8:19 am
i need an example or a report to understand your problem. is this what trying to get?
[font="Courier New"] |jun |jul |aug |total
aaa | 10...
August 8, 2008 at 7:52 am
Like Jack said, the problem is your variable names are changing case.
[font="Courier New"]select @holidaycnt = (select count(*) from @holidayTbl[/font]
should be
[font="Courier New"]select @holidaycnt = (select count(*)...
August 8, 2008 at 7:11 am
i use declare in all of my SSRS 2005 reports so it definitely can be used. have you defined any of the declared variables as report parameters? ...
August 7, 2008 at 2:46 pm
Viewing 15 posts - 61 through 75 (of 424 total)