Forum Replies Created

Viewing 6 posts - 46 through 51 (of 51 total)

  • RE: Divide by Zero (Report Items)

    How about this:

    =IIf((ReportItems!qty_complete.Value + ReportItems!qty_scrapped.Value) <> 0, (ReportItems!qty_complete.Value/(ReportItems!qty_complete.Value + ReportItems!qty_scrapped.Value)), 0)

  • RE: ssrs-An error has occurred during report processing.

    You cannot connect to the data source, probably need to adjust the authentication/credentials that are used for the connection.

  • RE: ssrs export to excel issue

    I use 2012 so I don't know if this works in 2008. Go to the properties of the tables and set the PageName property to what you want the...

  • RE: Subreport shows headers even when there are no values?

    I haven't done exactly what you are doing but here is a possible solution.

    Change the Groups area at the bottom of the screen to 'Advanced Mode' - there...

  • RE: ssrs 2012 export to excel problem

    Make sure you set the color value in the else part. Here is code I use to set the background color for a row:

    =IIf(Parameters!Program.Value = "ALL",

    Switch(Fields!CurrentClub.Value = 1, "DarkGray"...

  • RE: Show images from different folders

    If I understand correctly what you want, you can have an expression for the image in the Image Properties. Something like below based on a parameter:

    =IIf(Parameters!Database.Value = "CCDApp", "/CDMS/Images/CCD_Annual_TB_Screening_Questionnaire.png",...

Viewing 6 posts - 46 through 51 (of 51 total)