Viewing 15 posts - 1 through 15 (of 16 total)
Thank you very much for your assistance.
Implementing CTEs enabled me to complete the solution.
I am always trying to find the "correct" way to write SQL code and I thank you...
December 16, 2014 at 11:00 am
Thank you for your response.
I was able to create a CTE for the first part of my code.
You indicated that I should not use Table1.TDL_ID as a key for everything...
December 15, 2014 at 5:01 pm
That did it!
Thank you very much!
October 3, 2014 at 9:04 am
I don't know if there is a more efficient way to do this, but I resolved this by making the parameter a multiple.
I modified both datasets to accept multiples. (ie....
September 16, 2014 at 11:43 am
This was very helpful! Thank you!
September 2, 2014 at 4:40 pm
btw...
The function called in the SP is this:
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...
August 29, 2014 at 9:44 am
Thank you very much!
That worked.
I see how you did that.
I just wasn't thinking about the solution that way.
June 30, 2014 at 3:54 pm
Thank you for your efforts!
It should be 50%:
6 total entries
1 Early, 1 On Time for LSM
1 On Time for RSM
June 30, 2014 at 3:30 pm
Here is a sample report with sample data.
I hope that I did this correctly.
I would like the Percentage in Textbox70 to reflect the total percentage of On Time for the...
June 30, 2014 at 2:32 pm
All,
I was able to resolve this issue using this code:
= DatePart("ww",Fields!duedate.Value,IIF(year(Fields!duedate.Value) > 2010,vbSunday,vbSaturday))
This provided the week number and I was able to go from there.
June 30, 2014 at 8:33 am
The StrReverse was the culprit.
I thought I needed the StrReverse to get the correct data.
Obviously not.
Thank you.
June 3, 2014 at 1:32 pm
Mark,
Thank you very much!
That approach worked perfectly.
June 3, 2014 at 12:06 pm
They are individual varchar cells.
June 3, 2014 at 11:40 am
I spoke with the program developers and they said that there are no columns like that.
That is why I was going to bail.
I spoke with a gentleman that is an...
April 18, 2014 at 3:33 pm
Viewing 15 posts - 1 through 15 (of 16 total)