Forum Replies Created

Viewing 15 posts - 106 through 120 (of 173 total)

  • RE: How to display total based on group totals?

    Did you try simply adding a total row to your group? If it is grouped properly, the sum by group should work fine. Right click the group name...

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

    and SQL does kick butt

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

    As everyone else alluded, whenever you have potential for many attributes for a single instance, it is generally better to build your tables vertically (rows instead of columns). It...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: aggregation, group by clause, still learning how to produce results - please help #2

    select

    c.cus_code

    ,[number of Invoices]=COUNT(distinct i.INV_NUMBER)

    ,[Invoice Total]=round(SUM(l.LINE_PRICE * l.LINE_UNITS),2)

    from

    #CUSTOMER c

    left outer join #INVOICE i on i.CUS_CODE = c.CUS_CODE

    left outer join #LINE l on l.INV_NUMBER = i.INV_NUMBER

    group by

    c.cus_code

    having

    COUNT(distinct...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: concatenating two name fields into a single field

    Interesting that the syntax is different for concatenation than in tsql.

    In SSRS you'd use VBA, so the concatenate syntax should be =Fields!FieldName.Value & " " & Fields!OtherFieldName.Value. ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Query that joins two tables and retrieves a sum

    Glad to help!

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Query that joins two tables and retrieves a sum

    selectoi.OrderItemsID

    ,oi.ItemID

    ,oi.OrderID

    ,oc.OrderDescription

    ,TotalCharge=Sum(oc.OrderCharge)

    from#OrderItems oi

    left outer join #OrderCharges oc on oc.OrderID = oi.OrderID

    and oc.itemid = oi.itemid

    group by oi.OrderItemsID

    ,oi.ItemID

    ,oi.OrderID

    ,oc.OrderDescription

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

    After the obvious of sock some away for the future and the kids, pay everything off, etc., I have a few dreams I’d like to see to fruition.

    I’d like to...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Pasted data not showing correct font

    Just a guess - but maybe your SharePoint field is a Rich Text field. The font formats are preserved.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Bookmarks Rendered as Hyperlinks to Sheets Within Excel Workbook

    Get yourself some R2, you can name the tabs.

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

    Create Table Client_Products_Asoc(Client_Products_Asoc_ID Int Identity(1,1) Primary Key ,Client_ID Int References dbo.Clients(Client_ID) ,Product_ID Int References dbo.Products(Product_ID))Go

    Logically, the ClientID + ProductID should be unique so you can use them together as a...

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

    I did a stint a while back with a firm that provided software solutions (term used loosely) for the mortgage servicing industry. It was typical while providing software demos...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Change Data Capture and indefinite retention

    blackbelt in googlejitsu

    lol

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

    Did you try the background image property for your report object?

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

    funniest danged thing EVER!

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

Viewing 15 posts - 106 through 120 (of 173 total)