Forum Replies Created

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

  • RE: SSIS 2k5 Do I need to make a VB script ?

    why do you need to loop through?

    is there a word that always follows "datasource" and "computer"?

    if there is, look for those and use CHARINDEX to work it out

    it not, you...

  • RE: Looping through multiple excel sheets and deleting the blank sheets

    in fact, it was puzzling so much, i had a crack at the script task

    ' Microsoft SQL Server Integration Services Script Task

    ' Write scripts using Microsoft Visual Basic

    ' The ScriptMain...

  • RE: Looping through multiple excel sheets and deleting the blank sheets

    ok...my initial thoughts...

    not that straight forward as the for..next container doesn't have the functionality to go through worksheets

    so, i propose

    1) a script task that opens the workbook, loops through the...

  • RE: SSAS/MDX: measure to count only when something is the first instance

    Hendra Eka Putra (9/16/2009)


    I don't really understand what you are trying to do, because you had one row in Dec.

    you misunderstand, i want a 1 in january as that...

  • RE: SSRS:Subtotals or Subreports

    figured it out!

    joy of joys

    don't need a subreport

    didn't realise i could have two matices in the body

    doh

    cheers for looking though

  • RE: SSRS:Subtotals or Subreports

    attached

    the bit i'm struggling with is the sub total bit

  • RE: MDX question

    as a follow up question...

    i have

    CASE

    WHEN ISEMPTY([Measures].[Projected]) THEN null

    ELSE

    CASE [Measures].[Projected]

    WHEN 0 THEN 0

    ELSE [Measures].[Projected]/[Measures].[Principal...

  • RE: mixed empty and non-empty dimensions in SSRS (from SSAS)

    Dan English (2/27/2009)


    Anything you can do in SSMS you can do in the MDX Designer in SSRS. Take a look at the posting here and you will see you...

  • RE: MDX: OR in the WHERE

    actually...i think i've got it

    WHERE

    CROSSJOIN

    (

    [CCY].[CCY].&[GBP]

    ,

    UNION

    (

    ([StartDate].[Start Date].[All],[FromDate].[FromDate].&[2009-02-23T00:00:00])

    ,

    ([StartDate].[Start Date].&[2009-02-23T00:00:00],[FromDate].[FromDate].[All])

    )

    )

  • RE: MDX question

    wahey!

    got it

    even more thanks

    i knew that damn thing would be fiddly and out my comfort zone!

    😀

  • RE: MDX question

    aha

    many many thanks, that's solved the empty thing

    have got

    CASE

    WHEN ISEMPTY([Measures].[Projected]) THEN NULL

    ELSE (([Measures].[Projected]/[Measures].[Principal Amt])-StrToValue([BENCH].[RATE]))

    but it's still returning #VALUE in Excel...

    BENCH.RATE is a double, but it's a dimension

  • RE: wrote 0 rows

    solved it...

    i had a variable to SQL thing going on and if i removed the "use databasename" line from the start it worked

    strange...but hey ho

  • RE: deploying to server slows down the package

    ah, ok

    seems strange it would run ok in BIDS though

    i'll chop it up and see what happens

    many thanks

  • RE: deploying to server slows down the package

    hi Tim

    thanks for that...but i suspect it isn't blocking as it's the same server from BIDS and deployment (although i'm by no means a blocking expert!)

    i can't see anything in...

  • RE: SSRS see who's looked at reports

    thank bob & dave

    took me a while to figure out the

    use [ReportServer]

    bit 🙂

    one further question...i'm trying to pull the data out and into a flat file, or anywhere (!) in...

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