Forum Replies Created

Viewing 15 posts - 346 through 360 (of 542 total)

  • RE: Multiple parameters report- Free text search field

    Sorry Ninja, I did not get you...do you mean set up a trace ?

  • RE: Creating report model using multiple tables

    Could anyone please help me, I am still stuck on this ?

  • RE: Drill Through report

    sdvoranchik (8/30/2011)


    I am not sure I fully understand the challenge. If your expression is in the master report, setting up the drill through is relatively similar. Your question...

  • RE: Drill Through report

    sdvoranchik (8/26/2011)


    This is when I usually try to take a step back and break things down to try to figure out where the problem is occuring. First step is...

  • RE: Drill Through report

    sdvoranchik (8/25/2011)


    So it sounds like you are on your way and getting closer. Here is a quick recap. To create the drill through report, you would create it...

  • RE: Drill Through report

    Hi,

    I have created a drill through report but I am not getting the desired data in the target report. I dont know what is it that I am doing wrong....

  • RE: Drill Through report

    sdvoranchik (8/24/2011)


    Yes, this sounds like the exact use for a drill through report. Here is a how-to article from the microsoft website. Passing multiple parameters to the drill...

  • RE: Issue with using iff in a query

    Mike Menser (7/21/2011)


    Untested -- try this case statement:

    case when ARRIVAL_SCHEDULE_DT = DATEADD (month, 3, getdate()) and VESSEL_NAME = 'BEZEE' then 'N' else '' end +

    case when LAST_UPDATE_DT = getdate() and...

  • RE: VS_NEEDSNEWMETADATA error

    kramaswamy (8/18/2011)


    VS_NEEDSNEWMETADATA shows up when the underlying data behind one of the tasks changes. In your case, if the data that is being obtained from the database has changed, then...

  • RE: Help with SQL code

    Sean Lange (8/16/2011)


    Or just remove the subquery as it really isn't needed.

    SELECT

    ESO_PORT,

    sum(case when ONTIME_S = 'On Time' then 1 else 0 end)...

  • RE: Help with SQL code

    GilaMonster (8/16/2011)


    Stick an alias on the subquery (just add AS Sub after the close of the bracket for the subquery)

    Thanks very much for your help !

  • RE: Help with SQL code

    Charles Hearn (8/16/2011)


    Sorry about that. You need to add an alias to the end of the subquery.

    SELECT ESO_PORT,

    SUM(Ontime_s) Ontime_s,

    ...

  • RE: Help with SQL code

    Charles Hearn (8/16/2011)


    I believe this will work for you.

    SELECT ESO_PORT,

    SUM(Ontime_s) Ontime_s,

    SUM(Late_s) Late_s,

    SUM(Ontime_c) Ontime_c,

    SUM(Late_c) Late_c

    FROM (SELECT

    ESO_PORT,

    case when ONTIME_S = 'On Time' then 1 else 0 end as Ontime_s,

    case when ONTIME_S =...

  • RE: Getting data within a time period

    Welsh Corgi (8/9/2011)


    pwalter,

    Keep your chin up. Try not to be so hard on yourself no matter how bad it gets.

    Regards,

    WC

    Thanks for your advice Welsh !!! I apologize for my comments...

  • RE: Getting data within a time period

    Ninja's_RGR'us (8/9/2011)


    I remember feeling like that at least twice in my life. It's not easy to turn around but it is possible.

    The first time I got back to school...

Viewing 15 posts - 346 through 360 (of 542 total)