Forum Replies Created

Viewing 15 posts - 151 through 165 (of 173 total)

  • RE: Colour Code a Range? (Switch with and perhaps?)

    You should be able to shift-select all of the texboxes and set the background color property for all at one go.

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

    Not exactly sure what you are trying to accomplish. The screen shot shows a 2011 off to the right at the top of the report body.

    If you want to...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: ssrs help with grouping??

    Add a row group to the table, group on the Company.

    Click on Details menu arrow in the Row Groups area, select Add Group > Parent Group > select...

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

    isNull(sum(Really Long Select), 0)

    or put the really long select result into a variable and do the same with the variable

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Set Text Box FontSize property dynamically with DataSet value

    Agrrrrhhhh. I'm an idjit.

    Need to pass 10pt, not just 10.

    Derp.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: .rdl opens to XML code. Need Report Layout view.

    It will also happen if you try to open something developed in 2008 R2 with 2008 and vice versa. Different namespace.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Alternate Coloring for rows in Matrix Report

    Add code to the Report:

    Private bOddRow As Boolean

    Function AlternateColor(ByVal OddColor As String, _

    ByVal EvenColor As String, ByVal Toggle As...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Visual representation of boolean parameter (as checkbox)

    Pretty sure checkboxes typically represent multiple selection, whereas radio buttons allow for only one choice. With a boolean, you can only have one choice so checkboxes would be a...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: T-SQL query help request to roll up to rows into 1

    There is probably a more graceful way, but this will work:

    --MAKE TEMP TABLE TO MIMIC YOUR TABLE VARIABLE

    CREATE TABLE #snausages (customer_code INT, order_id INT, product_desc VARCHAR(25), order_product_quantity INT, [action] VARCHAR(25))

    ;

    --ADD...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS 2008 Using Date Parameters with Zip Code (Text) Parameter

    With your WHERE:

    WHERE

    ((CLREFER.ZIP=@ZIP)

    AND (MWAPPTS.ADATE BETWEEN @FIRSTDATE AND @LASTDATE))

    OR (MWAPPTS.ADATE BETWEEN @FIRSTDATE AND @LASTDATE)

    Both statements are evaluated because of the OR, essentially negating the @Zip filter.

    Need to do...

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

    Try something like this - I wasn't able to test without setting up data, but this should be close:

    SELECT

    Field=F.Comments

    --find starting location: first colon + 1

    ,StartAt=CHARINDEX( ':',F.Comments) + 1

    --find ending...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Person-PersonAddressRelation-Address Is this practical ??

    I’m gonna go out on a limb here and disagree with all y’all. I work with address data extensively. I ceased to believe years ago that “we’ll only...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: add a footer to a group in a tablix

    In the Group properties window, right click the group or click the selection arrow to expand the list of options. Select Add Total, select Before to add Header, After...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: ssrs not handling null value properly, SSMS query runs fine?

    Make sure the params in SSRS are set to allow null and blank values, make sure your data types match. It looks like variables were declared as nVarchar ...

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

    Try the Matrix tool. Should do exactly what you are looking for.

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

Viewing 15 posts - 151 through 165 (of 173 total)