Forum Replies Created

Viewing 15 posts - 136 through 150 (of 165 total)

  • RE: OLE with Report Service sql 2005

    Never done that before, but maybe you need to create an appropriate data source inside the report server folder where you have deployed your report?

    Only thing I can think of.....

    Nigel West
    UK

  • RE: How to remove Grouping after report is built?

    I assume that the report is using a Table, if so, click on the table to select it, then right click and select properties. In the properties window select the...

    Nigel West
    UK

  • RE: Single query to return conditional calculated field from two tables?

    I assume you are using SSRS.....

    You create a parameter in SSRS which is boolean, let's say this is called @Param

    In your SQL Query you use the following

    SELECT

    T1.Field1

    ,T1.Field2

    ,T2.Field11

    ,T2.Field12

    ,T1.Field1 * T1.Field2...

    Nigel West
    UK

  • RE: Re : Visibility and Toggling

    This is a standard combination of Visibility/Toggle.

    The thing to remember with the toggle is that the only symbol SSRS uses is a + sign, it does not give you a...

    Nigel West
    UK

  • RE: Matrix Help

    This is the a very simple form of matrix, the only way you can get this wrong is if you put your fields into the wrong place.

    When you place a...

    Nigel West
    UK

  • RE: Re : Visibility and Toggling

    It sounds to me lik you shouldn't be using visibility and toggle at all.

    Visibility: The purpose is to hide information that you don't want to see now, or don't...

    Nigel West
    UK

  • RE: Export to Excel - removing linked report hyperlinks

    Hi

    As far as I know there is no way to directly achieve this in SSRS2005 and I've not seen any enhancements to this effect in SSRS2008. The way I...

    Nigel West
    UK

  • RE: A YTD total in a matrix report

    Take a look through this article, I haven't read all of it yet but it would appear that this will cover your needs and more. I'll probably try working...

    Nigel West
    UK

  • RE: A YTD total in a matrix report

    OK, I understand a bit more about what you need, let me do a little work on it and I'll come back to you.

    Nigel West
    UK

  • RE: A YTD total in a matrix report

    Is this report ALWAYS going to print only a 12 month period (i.e. one year of data from Jan to Dec).

    If the answer to this is Yes then I'd probably...

    Nigel West
    UK

  • RE: Multiple Reports out of one report based on parameter input - like in Crystal

    I think you should be able to achieve this by wrapping your invoice within a ListBox (from the toolbox in VS2005), the list box has it's own grouping property which...

    Nigel West
    UK

  • RE: Date Validation for Date Parameter

    Sorry, somehow the visibility expression went slightly wrong.....

    IIF(Parameters!StartDate.Value '31 DEC 2008',TRUE,FALSE)

    I still think you shouldn't need to use it though, the dataset should really take care of it...

    Nigel West
    UK

  • RE: Date Validation for Date Parameter

    1)Do I add the below,to all 3 datasets?

    IF @StartDate >= '01 JAN 2008' AND @EndDate <= '31 DEC 2008'

    BEGIN

    select Name,Address

    from dbo.Customer

    ...

    Nigel West
    UK

  • RE: Date Validation for Date Parameter

    Hi You could do the following

    IF @StartDate > '01 JAN 2008' AND @EndDate <= '31 DEC 2008'

    BEGIN

    Select Name,Address from dbo.Customer where

    ...

    Nigel West
    UK

  • RE: Reporting services. SQL 2005 SP2

    The simple way would be to return a combination of ProdKey and SubKey as your parameter key, you would need both of these anyway when the parameter is passed...

    Nigel West
    UK

Viewing 15 posts - 136 through 150 (of 165 total)