Viewing 7 posts - 16 through 22 (of 22 total)
Thank you for the feedback! Lynn
Here's the simplified version of my table Structure:
GroupID col1 col2 col3 col4
1 ...
July 9, 2014 at 3:50 pm
Thank you for the reminder Luis!
Will do so now!
July 8, 2014 at 5:17 pm
For everyone else's info.
Here's my whole solution:
CREATE FUNCTION [dbo].[FnSplit]
(@List nvarchar(2000),@SplitOn nvarchar(5))
RETURNS @RtnValue table
(Id int identity(1,1),Value nvarchar(100))
AS
BEGIN
While (Charindex(@SplitOn,@List)>0)
Begin
Insert Into @RtnValue (value)
Select Value = ltrim(rtrim(Substring(@List,1,Charindex(@SplitOn,@List)-1)))
Set @List = Substring(@List,Charindex(@SplitOn,@List)+len(@SplitOn),len(@List))
End
Insert Into @RtnValue (Value)
Select...
July 8, 2014 at 4:22 pm
Thank you so much for pointing it out! Craig
I'll try and let you know!
BTW I like your motto too!
July 7, 2014 at 6:55 pm
Thank you for your reply! I feel the same way. But I don't have much knowledge for .net. Hopefully someone did something similar before can help on it!
July 7, 2014 at 1:59 pm
Hi, Bob
You guys are SQL genius. IT does look much cleaner that way.
Do you think the first line should be changed to:
set @start = coalesce(@startdate, dateadd(yy,-1,@enddate), dateadd(yy,-1,getdate())
Thank you again!...
August 19, 2013 at 10:52 pm
Hi, Tim
Thank you for your reply!
My question is that the [sample barcode] only shows on the sub-report but I need to generate a search field on the main report for...
August 15, 2013 at 8:41 pm
Viewing 7 posts - 16 through 22 (of 22 total)