Viewing 15 posts - 1 through 15 (of 84 total)
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...
December 16, 2019 at 9:50 am
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...
August 22, 2019 at 2:59 pm
Thanks - option 2 worked. Thank you for taking the time to help me and for your patience. Much appreciated.
August 21, 2019 at 7:10 am
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...
August 20, 2019 at 2:10 pm
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...
August 20, 2019 at 1:58 pm
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...
August 20, 2019 at 1:20 pm
Thanks for getting back but sorry you've lost me. Are you suggesting I replace ":" with "-" ? Apologies. Thanks.
August 20, 2019 at 11:55 am
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)
September 17, 2018 at 5:26 am
In SSRS I am currently using this expression:
=IIF(Today() >= DateSerial(Year(Today()), 4, 1),DateSerial(Year(Today()), 4, 1), DateSerial(Year(Today())...
August 22, 2018 at 4:54 am
July 12, 2018 at 8:59 am
July 12, 2018 at 8:58 am
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')
July 9, 2018 at 4:11 am
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"))
June 20, 2018 at 5:35 am
Viewing 15 posts - 1 through 15 (of 84 total)