Forum Replies Created

Viewing 15 posts - 301 through 315 (of 541 total)

  • RE: FORMAT Number

    Thanks for the links guys.

    Phil.

  • RE: Report Delivery Options

    I can get it to run if I make the user account a domain admin (which I do not want to do).

    What are the minimum permissions?

    Phil.

  • RE: Work around for header/footer data in ssrs 2005

    Hi. You need to reference a field that exists within the report body (which can be hidden)i.e.

    = First(ReportItems!YourField.Value)

    Regards,

    Phil.

  • RE: Slipstream Office 2007

    Thanks, I will take a look.

    Phil.

  • RE: Help - Report Query

    Chris many thanks for your efforts, I will wrap my brain around your example and attempt to adopt this approach.

    Many Thanks,

    Phil.

  • RE: Help - Report Query

    Thanks Seth,I will read your post.

    Many Thanks,

    Phil.

  • RE: Help - Report Query

    Thanks Seth. Quite new to SQL. Should I simply script the tables that appear in any query (strip out constraints)? Regards the INSERT I have only ever done INSERT FROM...

  • RE: Help - Report Query

    I have resolved (I think) by adding additional grouping on the report.

    grpQty (by quantity,ProductCode)

    If anyone has an opinion on the code etc please feel free to educate me!

    Thanks,

    Phil.

  • RE: Expression: Date Format on Report

    Sankar just what I was after.

    Many Thanks,

    Phil.

  • RE: Return Average build cost based on last 5 Orders

    Hi NULL, sorry for the delay in posting back.

    I made the amendment but the query still returned multiple rows for the same product rather than count.

    Thanks for all your efforts,...

  • RE: Return Number of Quotes by Month

    Adi thanks for the reply, I have re-attached as .xls.

    I have modified code as follows:

    SELECT

    YEAR (so.EffectiveDate) AS Year,

    MONTH (so.EffectiveDate)AS Month,

    COUNT(so.SalesOrder)AS NumberOfQuotes,

    SUM (si.CurItemValue) AS OrderTotal

    FROM SalesOrders so

    INNER JOIN SalesOrderItems si...

  • RE: ORDER BY

    Thanks guys. I will need to check with the app vender.

    It has come to light that I may be able to get what I am after by extracting from...

  • RE: Return Average build cost based on last 5 Orders

    NULL I will give that a try then update.

    Many Thanks,

    Phil.

  • RE: ORDER BY

    Hi Ramesh. Having reveiwed the orders from within the existing system it came to light that what I thought was the last OrderId was not in fact the case, they...

  • RE: Return Average build cost based on last 5 Orders

    I have run the following query (small sample of output attached).

    SELECT ProductId

    ,COUNT(1) OrderCount

    ,CASE WHEN COUNT(1) = 1 THEN SUM(MAN)/NULLIF(MANCount,0) ELSE AVG(MAN) END MAN

    ,CASE WHEN...

Viewing 15 posts - 301 through 315 (of 541 total)