Forum Replies Created

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

  • RE: Configuring report manger Url on Local server asks Username and password

    I don't know the exact cause of this problem. But maybe following may help:

    Just try this i had tried and my prob got solved..............

    For Firefox

    1. Open firefox and type in...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Set the backcolor based on IIF conditon in SSR2008R2?

    You have to put this expression into:

    Textbox properties > color > select 'expression' > paste ex. and click ok.

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: conditionally change font and fill colour on a tablix

    It's more like this expression:

    =iif(Fields!BRANCH_CODE.Value = MIN(Fields!BRANCH_CODE.Value, "DataSet1"), "Red", iif(Fields!BRANCH_CODE.Value = MAX(Fields!BRANCH_CODE.Value, "DataSet1"), "Green","Black"))

    Steps

    1) Select the desired textbox and press F4 to go to its properties section.

    2) Click on the...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: how to sum up

    Use this instead:

    select deliveryEntry.ID, sum(cost*(deliveryTank.grossVolume)) as Total

    from deliveryEntry

    inner join deliveryMapping on deliveryEntry.ID=deliveryMapping.deliveryID

    inner join deliveryTank on deliveryMapping.ID=deliveryTank.deliveryID AND (deliveryTank.deliveryID=(select MAX(deliveryMapping.ID) from deliveryMapping where deliveryMapping.deliveryID=50))

    inner join Tanks on deliveryEntry.simmonsPID=Tanks.Simmons_PanelID

    and Tanks.Tanks_ID=deliveryTank.tankID

    inner join costTag...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: I Just Want To Add A New Column!

    Right click on any column header and select Insert Column > Left / Right.

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: how to sum up

    Then include only delivery_id in the select and group by clause.

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: how to sum up

    output :

    id productname total ...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Counting Rows on a LookupSet Function in Reporting Services

    Use the following expression in the textbox :

    =LookupSet(Fields!PRODUCT_BRAND_CODE.Value, Fields!PRODUCT_BRAND_CODE.Value, Fields!PRODUCT_NUMBER.Value, "Product").Length

    From Ref: http://social.msdn.microsoft.com/Forums/en/sqlreportingservices/thread/135ef7c9-a4d0-4f16-9828-5ca8c2ee00ab

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: IIf statement!?

    You can try following :

    1)Go to properties section of the textbox by selecting the textbox and pressing F4.

    2) Go to the Format section in properties.

    3) Click the drop down...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Grouping Values in a Report??

    You could add a calculated field on which you should group on.

    You can use mid function in the report expression for the new field and extract only first 2 words...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Stored procedure in a function

    Lowell (8/29/2012)


    Are you sure about that?

    copy and paste it to SSMS...that stops right away with a syntax check, since the EXEC command cannot exist inside the parameter list.

    To...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Stored procedure in a function

    You don't have to use a SP. you can just replace following code:

    SELECT value from dbo.Fn_tsp_orderhistory(EXEC STORED_PROC_NAME

    ('''+@c+''')

    WITH

    SELECT value from dbo.Fn_tsp_orderhistory( '%' + REPLACE( @c, '*', '%') +...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Exporting

    Maybe this link will help:

    SSRS export

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: Group visability expression

    I think the only way you can achieve this by using Rank & Partition in a SQL query.

    And then using it in the hidden expression.

    For Ex. if(new_field = 1...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

  • RE: DataSet

    lcarrethers (8/16/2012)


    Was this ever figured out? I having the same problem?

    Please explain what are you trying to achieve here ?

    And what exact error you are getting after you...

    BI Developer
    SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
    Please visit... ApplyBI

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