Forum Replies Created

Viewing 14 posts - 16 through 29 (of 29 total)

  • RE: NaN Value in SSRS Report

    Maybe it really isn't 0 in that textbox. You might have to use IsNothing instead of comparing to zero. Just adjust the IIf based on what is really...

  • RE: NaN Value in SSRS Report

    Then just wrap it with IIf as so

    =IIf(reportitems!Textbox103.Value = 0, 0, CDBL(reportitems!Textbox33.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox34.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox35.Value) / CDBL(reportitems!Textbox103.Value)

    +CDBL(reportitems!Textbox36.Value) / CDBL(reportitems!Textbox103.Value))

    Untested syntax but I think correct, It puts 0 is the...

  • RE: NaN Value in SSRS Report

    Are you getting that because reportitems!Textbox103.Value is zero? You should us IIf to make sure that value is not zero before doing the calculation do you don't divide by...

  • RE: maximum request length exceeded 2012

    Siten0308 (12/23/2015)


    <httpRuntime executionTimeout="9000" maxRequestLength="900000" />

    Are you changing this in the Report Manager or Report Server Web.config file, I think you want the Report Manager one which would be at...

  • RE: Conditional visibility of parameters

    That is still true. The closest I have been able to do, when the parameters are drop-downs is to use a query to populate the values. When they...

  • RE: Previous Year Default Parameters

    Set your defaults as below:

    Start

    =DateAdd(DateInterval.Year, -1 , DateSerial(DatePart("yyyy",Today), 1, 1))

    End

    =DateAdd(DateInterval.Day, -1 , DateSerial(DatePart("yyyy",Today), 1, 1))

    The DateSerial() determines the first day of the current year. Then either subtract one year...

  • RE: SSRS 2014 : Add several cells inside of a large cell

    Can you do with an expression in the Naf_Eco cell where you format the output, something like

    =Naf_Eco + " " + Libel_Naf_Eco

    I guess it would depend how...

  • RE: Input integer parameter values for quarter and year: How to get last day of month and last month of quarter for footer

    Here is one way to calculate the last day of the quarter (untested):

    =DateAdd(DateInterval.Day, -1, DateAdd(DateInterval.Month, 1, DateSerial(Parameters!Yr.Value, Parameters!Qtr.Value * 3, 1)))

    It constructs the first day of the quarter ending...

  • 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 14 posts - 16 through 29 (of 29 total)