Forum Replies Created

Viewing 14 posts - 211 through 225 (of 225 total)

  • RE: No Report Headers - Workarounds?

    brett grammar (1/25/2007)


    So RS does not have Report Headers, only Page Headers, which are created and appended after the body of the form is generated. I had a fairly simple...

  • RE: Report Snapshot/History/Subscription Management

    I feel sorry for you. These areas are very poorly documented with real world examples of usage, even in books dedicated to RS (I know, because I've read them all).

  • RE: Not allowing Null in Parameter

    Sacheen (9/29/2010)


    Hi,

    I have created one parameter in a report which takes values from a dataset.

    I have marked option to allow NULL values but when values are populating in the parameter...

  • RE: How to set parameters

    That's what I do (in some cases, for some specific reasons, that escape me right now):

    WHERE InvoiceDate >= DATEADD(d, DATEDIFF(d, 0, @StartDate), 0)

    AND InvoiceDate < DATEADD(d, DATEDIFF(d, 0, @EndDate), 1)

  • RE: SSRS known issues

    There's a knowledge base article on Microsoft's site that lists all the SQL updates since each main release and service pack.

    2008: http://support.microsoft.com/kb/956909

    2008 SP1: http://support.microsoft.com/kb/970365

    (there's none for SP2 yet that...

  • RE: Hide NULL Rows

    I don't know about MDX, but I do know about RS's Hidden parameter and how it sometimes doesn't do what you expect. For example, sometimes it leaves blank space and...

  • RE: Help - table report with group in ssrs2008 r2

    There's a list of groups at the bottom of BIDS, you can right click the group you want and click to add a row outside the group above; that will...

  • RE: Deploying SSRS Reports

    I have a hundred or so reports that need to be deployed into different folders, and copied across multiple servers (development, testing, production) which means that the BIDS deploy function...

  • RE: Solution files and project files

    I store files locally, and keep them in source control. We used a 3rd party program for that named Fortress, and it integrates properly with BIDS 2008. It puts little...

  • RE: How to Add a subreport in a parent report

    I couldn't understand what you were trying to do, but accessing sub report values from the parent report isn't possible.

    I think what you want can be done in a different...

  • RE: 2005 Report Builder issues

    I would love to hear any real world implementations of report models. As far as I've seen them, they're unusable if there's going to be any changes in the database...

  • RE: Trouble with IIF statement to replace blanks in matrix

    You're comparing an integer with a string by accident, so it fails. I think you want to do:

    =IIf(Fields!TotalCalls.Value Is Nothing, 0, Sum(Fields!TotalCalls.Value))

  • RE: Dodge, Dip, Dive, Duck, and Dodge

    I loved your entry today, it summarises my feelings about a lot of companies today - and getting dropped instead of being transferred seems to happen a lot more than...

  • RE: Using views/functions/CTEs to return this self referencing table, possible?

    Resolved:

    WITH Link_CTE (link_id, next_link_id, root, level) AS

    (

    SELECT link_id, next_link_id, root = link_id, 1 AS level

    FROM things t

    WHERE EXISTS (SELECT * FROM customer c WHERE c.link_id = t.link_id)

    UNION ALL

    SELECT t.link_id, t.next_link_id,...

Viewing 14 posts - 211 through 225 (of 225 total)