Forum Replies Created

Viewing 15 posts - 16 through 30 (of 173 total)

  • RE: stored procedure not receiving null value from parameter in SSRS 2008 R2 report

    I think if you add = null to the parameter declaration in the stored procedure as such:

    alter procedure dbo.ProcedureBlah

    @BeginDate date = null

    as

    ...

    it will act as a...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Format expression as decimal

    Did you try the Number property for the Text Box? Right click in text box and select Text Box Properties. On the Number pane, select Number or Currency in...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Sum the values of an expression

    eobiki10 (6/15/2012)


    Hi all,

    I want to sum the values of an expression. The expression generated 1(s )and 0s but I want to sum the 1(s)

    I wrote Sum(iif(Fields!digi.value =1)). But the expression...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Download report having more than 256 columns in SSRS 2008 R2 to Excel?

    sql server developer (6/15/2012)


    I've a SSRS 2008 R2 report that have more than 256 columns. When i try to download that to Excel it is failing because of the 256...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Hide column using date parameter

    Kaniguan_SQL (6/18/2012)


    Hi Forumer's

    I have a report in SSRS with from and to date parameter. the records pullout based on the Date. So, i have where Condition

    that determine the date...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Opinions requested - Select All in multi-valued parameter

    Thanks Sean

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: percentage in reporting services

    eobiki10 (6/13/2012)


    Hi all,

    Can someone help me with this problem. I want to calculate the percentage of certificate posted for a given product that is within 35 days of posting the...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Reports

    amar_kaur16 (6/13/2012)


    I am new to SSRS.

    I have a query resulting data for TeacherFirstName, TeacherLastName, TeacherID, Class,Subject, helperFirstName, helperLastName, helperEmail and StudentFirstname, studentlastname, Email, SubjectDate, subjectTime Etc.

    I need to create a...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: display hide column values

    riya_dave (6/1/2012)


    hi

    i need to hide some value in 1 column.

    example.

    i have 1 field

    account index

    us1 0

    us1...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Two IF Statements

    DarthBurrito (5/30/2012)


    I'm converting a Crystal Report to SSRS. In CR, there's a formula that contains two IF statments, which is the following:

    numberVar myClaimDiff := 0;

    if isNull({VIEW_Creditors.claim_diff_value}) then

    ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: expression in textbox for blank

    riya_dave (5/30/2012)


    hi

    i need to check if the variable contains nothing there should be 0 value display in report.

    =iif(Variables!YearCurrentshort.Value = " " ,0 , Variables!YearCurrentshort.Value)

    i am getting error,

    how to check for...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Figuring out NSF payments

    You were looking for a recursive solution, but what about something with temps and row numbers, like:

    IF OBJECT_ID('TEMPDB..#pmt','u') IS NOT NULL DROP TABLE #pmt;

    IF OBJECT_ID('TEMPDB..#nsf','u') IS NOT NULL DROP TABLE...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: drill down report open in new window

    you might try this: (I haven't)

    http://www.mssqltips.com/sqlservertip/1283/display-reporting-services-drill-through-reports-in-new-browser/

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS report changes when i publish

    It may be related to the interactive page size vs. the actual page size. There is quite a bit of documentation availble about the different rendering behaviors, you might...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS Expression

    Use the VB & instead of SQL + to concatenate in SSRS expression.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 15 posts - 16 through 30 (of 173 total)