Forum Replies Created

Viewing 15 posts - 391 through 405 (of 2,278 total)

  • RE: SSRS Report Subscription Parameters based on Type (Monthly, Daily)

    One report 2 data driven subscriptions

    Daily subscription query

    SELECT DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS StartDate

    ,DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS EndDate

    Monthly subscription query

    SELECT DATEADD(mm,-1,DATEDIFF(dd,0,GetDate())) AS StartDate

    ,DATEADD(dd,DATEDIFF(dd,0,GetDate()),-1) AS EndDate

    Later in the subscription wizard you associate the StartDate value to...

  • RE: Snapshots in SSRS

    In the report manager go to the Properties tab and click History. You can configure your snapshots there.

  • RE: hide label is value is null

    harri.reddy (6/7/2012)


    hi

    i want to hide label when one field valeu is null,

    i am using this expression,

    =iif(Fields!total.Value =NULL,true,false)

    it showing error in expression,

    "null is not declared"

    Try

    =iif(ISNOTHING(Fields!total.Value),true,false)

  • RE: setting no of records per page showing extra pages with no records

    I have only seen blank pages when the report pushes out the width beyond the page margins. Check to make sure that your report body width + left margin...

  • RE: Calculating in SSRS vs Calculating in SQL

    It's my opinion that doing calculations, when practical, in SQL is a better path. I have done plenty of calculations in SSRS though when it would be much harder...

  • RE: Today's Random Word!

    eccentricDBA (6/7/2012)


    Brandie Tarvin (6/7/2012)


    EL Jerry (6/7/2012)


    Ray K (6/7/2012)


    Lynn Pettis (6/6/2012)


    Longest Day

    D-day

    Birthday.

    Thor's Day

    Hmmm Thor's Day - Thursday. Coincidence?

  • RE: E-Mail Delivery in SSRS

    And the URL link will bring them to the portal, I don't see the problem, this way is fewer clicks for the end user.

  • RE: How to Display group row and then toggle detail row

    Yeah, this is a bit tedious. You also want a separate header for your detail data. What you need to do is add a row at your group...

  • RE: Today's Random Word!

    crookj (6/6/2012)


    Lynn Pettis (6/6/2012)


    Longest Day

    Love that movie! A classic! June 6th!!!

    The Longest Yard....not really a classic.

  • RE: E-Mail Delivery in SSRS

    I guess I don't understand the issue of providing a link to the report. This just makes it easier for the user to get to the report on the...

  • RE: E-Mail Delivery in SSRS

    In a report subscription you can "Include report" or "include link" or both. In your case I would just include the link.

  • RE: Show data from DB on top of each page

    I probably should have been more specific than "Data element." From what I understand you want to group on client.

  • RE: SSRS Report to SSIS

    If you have a report subscription, you can execute that subscription on demand using SQL. If you want, you can do the same thing using the Execute SQL Task...

  • RE: Expression Language

    I have only used VB for embedded code. I am not sure if it will take another language. Although if you really need another language (and if it...

  • RE: Show data from DB on top of each page

    I would use a list, and if you need repeating data put a tablix/table inside the list. Group the list and tablix on the same data element and you...

Viewing 15 posts - 391 through 405 (of 2,278 total)