Forum Replies Created

Viewing 15 posts - 61 through 75 (of 424 total)

  • RE: Hide report parameter based on the value of another report parameter

    you'll have to create your own interface to do that.

  • RE: Matrix problem - finding percentages based on Row group

    Mark Eytcheson (8/11/2008)


    ... I've set up a matrix with the following Row Group and Column Groups:

    row group:

    matrix1_purchaser - grouped on "PURCHASER"

    column groups:

    matrix1_PromiseYear - grouped on "PromiseYear"

    matrix1_PromiseMonth - grouped on...

  • RE: SSRS - Matrix - Get total

    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...

  • RE: SSRS - Matrix - Get total

    the subtotal's calculation is based on the detail cell. change the detail cell to use sum(...) instead of first(...).

  • RE: many possible input combinations

    steve (8/11/2008)


    I can understand using the high-values in the "TO" part of the range to eliminate extra code. However, I am interested in a specific value when I provide one...

  • RE: sum multiples matrix SubTotals

    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...

  • RE: sum multiples matrix SubTotals

    marcelo (8/8/2008)


    there is one dataset for each matrix.

    Oy! Can the datasets be combined?

  • RE: How do I use DECLARE in SSRS?

    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...

  • RE: aggregate based on the weeks

    you'll need group on the following expression to get the week:

    CInt(datediff( day, [first date of report], [date column] ) / 7)+ 1

  • RE: How do I use DECLARE in SSRS?

    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...

  • RE: sum multiples matrix SubTotals

    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...

  • RE: Sum Distinct

    giontech (8/7/2008)


    Is there a way to do sum distinct in reporting services?

    I have a matrix with two column groupings and subtotals for each of them, but I can't find a...

  • RE: sum multiples matrix SubTotals

    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...

  • RE: How do I use DECLARE in SSRS?

    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(*)...

  • RE: How do I use DECLARE in SSRS?

    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? ...

Viewing 15 posts - 61 through 75 (of 424 total)