Forum Replies Created

Viewing 15 posts - 1 through 15 (of 84 total)

  • Reply To: Multiple row issue

    Thanks for getting back John. Yes, I should have said: there is actually an instance where there are 17(!) email addresses for one individual.

    For the purposes of what I'm trying...

  • Reply To: CASE statement headache

    Thanks Crow

    Thanks crow1969; that worked very nicely and thanks for the tip re [^0-9]. Very helpful and much appreciated: thanks for taking the time and effort to get back to...

  • Reply To: Trimming then adding text

    Thanks - option 2 worked. Thank you for taking the time to help me and for your patience. Much appreciated.

  • Reply To: Trimming then adding text

    Yes, that's right. Thank you.

  • Reply To: Trimming then adding text

    Thanks for getting back. In terms of the text that appears: it is constant and always the same, basically:

     

    Working Reference : [then the digits] (text in brackets) loads more...

  • Reply To: Trimming then adding text

    I have managed to solve all this with a CASE statement rather than an expression in SSRS, so no major worries about this unless someone has a solution to my...

  • Reply To: Trimming then adding text

    I see, thanks. No sadly the : appears in exactly the same place in both instances so the neat solution offered above - for which many thanks - doesn't work...

  • Reply To: Trimming then adding text

    Thanks for getting back but sorry you've lost me. Are you suggesting I replace ":" with "-" ? Apologies. Thanks.

  • RE: Trimming text in SSRS

    Thanks for taking the trouble to reply.

    I was also able to use successfully:

    =Mid(Fields!my.Value,InStr(Fields!my.Value,":")+1,Instr(InStr(Fields!my.Value,":")+3,Fields!my.Value," ") - InStr(Fields!myValue,":") -1)

  • RE: Expression tweak in a date parameter

    faulknerwilliam2 - Wednesday, August 22, 2018 4:41 AM

    In SSRS I am currently using this expression:

    =IIF(Today() >= DateSerial(Year(Today()), 4, 1),DateSerial(Year(Today()), 4, 1), DateSerial(Year(Today())...

  • RE: Help required with GROUP BY

    Luis Cazares - Thursday, August 9, 2018 6:21 AM

    faulknerwilliam2 - Thursday, August 9, 2018 5:42 AM

    August 9, 2018 at 7:03 am

    #2000996

  • RE: Tracking jobs over time

    Steve Jones - SSC Editor - Tuesday, July 10, 2018 9:17 AM

    I might break this into two parts to get started. 1)...

  • RE: Tracking jobs over time

    jonathan.crawford - Monday, July 9, 2018 7:40 AM

    take in your desired point in time to compare to as a parameter. Defaults to...

  • RE: Tracking jobs over time

    Sample data, which I should have provided:

    DECLARE @t TABLE ( JobType NVARCHAR(50), JobStart DATETIME, JobFinish DATETIME )
    INSERT INTO @t
    (JobType,JobStart, JobFinish)
    VALUES
    ('Type1', '20183103', '20180421')

  • RE: Last day of current quarter

    Thanks, will give that a whirl. Thanks for the quick response.

    I think I've managed to resolve this slightly differently via:

    =DateAdd(DateInterval.Quarter, DateDiff(DateInterval.Quarter, CDate("1/1/1900"), Today()) + 1, CDate("31/12/1899"))

Viewing 15 posts - 1 through 15 (of 84 total)