Forum Replies Created

Viewing 15 posts - 31 through 45 (of 173 total)

  • RE: Hide Matrix row/column group in SSRS 2008

    Or hide the column instead of the whole group. Right click the column header and select Column Visibility.

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

    Maybe instead of expressions to hide the columns based on the param value, leave the columns visible but set the field expression to only display data based on the parameter....

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need help formatting fields with percentage

    mldardy (5/11/2012)


    One other thing, when I add the =Code.DivideBy... there is a red squiggly line under 'DivideBy', and it says unrecognized identifier when hovering over it.

    It'll do that -...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need help formatting fields with percentage

    except I would use this as my embeded code instead because it tests first for the whether or not the input is a number.

    Cool! Thanks!

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

    You should be able to query the ReportServer database to find what you need. I don't have access to a report server right now so I can't give you...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: improve performance of sp

    Never give up! The entertainment value is priceless! 😀

    Edit: In retrospect I realize this probably sounded snotty and/or demoralizing. What I meant to convey is that...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS Freezes with Paramater using wildcard

    Mebbe just join on the LEFT 12?

    select left(Sub, 12), P_NAME

    from dbo.mydb (nolock)

    where left(Sub, 12) = @SUB

    or if the parameter is longer than 12...

    where left(Sub, 12) = left(@SUB,12)

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Mixed (grouped/ungrouped) content on the X-axis for column chart

    im_lanie (5/10/2012)


    You might want to try using a group expression that groups by Month if the Year is current year Else group by Year. Your dataset would have a...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Cannot create a connection to data source 'DataSource1'

    The data sources must also be deployed to the report server.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need help formatting fields with percentage

    It is most likely a divide by zero error.

    Add custom code to rdl (report properties --> code pane):

    Public Function DivideBy(ByVal Numerator, ByVal Denominator)

    If Denominator = 0 Then

    DivideBy =...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Get related fields from record containing MAX()

    pdanes (5/10/2012)


    I tried it and I do get only three rows, but what determines which one is returned by the RowNumber function? Or rather, what does the RowNumber function mean?...

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

    Take a look at the Stairways - Stairway to Reporting services on this site

    http://www.sqlservercentral.com/stairway/72382/

    Books on line are pretty good for this subject

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Divide by zero in SSRS variance calculation

    Add custom code to rdl (report properties --> code pane):

    Public Function DivideBy(ByVal Numerator, ByVal Denominator)

    If Denominator = 0 Then

    ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need to trap output from Parameter

    Looks like the Gurae have not responded, so you're stuck with me.. 😛

    To show a list of the selected parameters, you'd use field expression:

    =Join(Parameters!Project.Value,", ")

    or to show the labels:

    =Join(Parameters!Project.Label,",...

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

    Might be a divide by zero error. See the 3rd response (from Toolman) in this post:

    http://www.sqlservercentral.com/Forums/Topic537901-150-1.aspx

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

Viewing 15 posts - 31 through 45 (of 173 total)