Forum Replies Created

Viewing 14 posts - 61 through 74 (of 74 total)

  • RE: Reporting Services Error

    if you haven't already, you need to add your Windows login as a SQL user to Adventure Works and give that login at least data reader permission.

    I have seen it...

  • RE: Matrix Default Values

    hmmm you've got a bit of a problem there... the best way to ensure that a column will always exist even if there's no data is to greate a group...

  • RE: Reporting Services 2000

    Here's a link to the download center for MSRS 2000, has an eval edition of MSRS 2000, but i'm sure if you are licensed for SS 2000 then you'll be...

  • RE: Email Suibscriptions not Running

    The scheduled report should create a sql agent job on the server which you can see from enterprise manager. you could check and see if the sql agent job has...

  • RE: Problem in query or parameters

    Sounds to me like one of your params is trying to pass in a NULL value which is being bounced by the report... try allowing NULL values on your report...

  • RE: Report format question

    Maybe you could try using the List Object... this is designed for layout requirements that don't fit a table, like you need text in certain places or irregular layout... not...

  • RE: Interactive Filter

    Sounds like you want to add a drill through linked report. I've never done this but here is some subject areas to search for in VS 2003 Help.

    Adding a Drillthrough...

  • RE: geting only one user credentials

    A report can only have one default value per parameter, so if you up load the report you'll over ride the other defaults set up. which maybe OK depends...

    However you...

  • RE: datetime parameter format

    I'm assuming that when a user enters a date range like 03/10/2005 - 03/10/2005 (dd/mm/yyyy) then they just want everything for that day regardless of time...

    So I'd give them two...

  • RE: Parameter Question

    Change your ORDER BY from

    ORDER BY RTRIM(CAST(DATEPART(Year, TimeLineDate) AS char(4)) + '/' + CAST(DATEPART(Month, TimeLineDate) AS char)) DESC

    to ...

    ORDER BY DATEPART(Year, TimeLineDate) ASC, DATEPART(Month, TimeLineDate) ASC

  • RE: unable to browse data from analysis services

    You may also have to process the cube and dimensions before you can view it.

  • RE: Problem in query or parameters

    just a thought but have you checked that the shared data source for the parameter dataset has also been deployed to your live server?

  • RE: Multiple parameters to nested iif statement.

    i was thinking that your code was being used to select records into your report ie in the data pane, if so then you can use SQL or a stored...

  • RE: Multiple parameters to nested iif statement.

    Couldn't you just do this in the SQL? e.g.

    SELECT * FROM mytable

    WHERE (@Location = Location)

      AND (

                   (@Date = Date)

              OR (@DateRange >= DATEDIFF(dd, Date, GETDATE()))

            )

    Or am i missing...

Viewing 14 posts - 61 through 74 (of 74 total)