Viewing 15 posts - 16 through 30 (of 55 total)
The 24 hour wouldnt be an issue, but I did go a different route. Instead of using the 00:00 format, I went ahead and converted the result to seconds. Then...
March 25, 2013 at 1:02 pm
Sean Lange (3/25/2013)
declare @Time time = '09:26'
select @Time
Now you have stored only the...
March 25, 2013 at 10:42 am
I went with a different route. If this helps anyone, this is what I did:
=(IIF(RowNumber("BugID")=1, 0, DateDiff("s", Previous(Fields!DateAssigned.Value), Fields!DateAssigned.Value))) / 86400
I placed this in it's own cell, next to the...
January 16, 2013 at 10:11 am
GSquared (12/11/2012)
December 11, 2012 at 9:00 am
GSquared (12/11/2012)
CASE
WHEN column1 = 1 THEN 'column1'
ELSE ''
END
+ ' '...
December 11, 2012 at 8:50 am
Let me add that I'm using this SP for a SSRS report. As the code I provided stands, the SP has one parameter called Products. So the parameter accepts multiple...
December 7, 2012 at 7:17 am
If I understand what you're looking for, I've done this in the past.
Create a parent group on Details. INnstead of selecting a field, I used an expression like the one...
December 6, 2012 at 11:24 am
anthony.green (11/12/2012)
http://www.sqlservercentral.com/scripts/Date/68389/
Will also come in handy for other calendar...
November 12, 2012 at 9:26 am
After a little research, I found this worked for me.
SubString(ChangeLog, 82, Len(ChangeLog) - 40) as Reason
October 25, 2012 at 11:22 am
I tried this and it worked but up to a limit.
Case When Len(ChangeLog) >= 5 Then Right(ChangeLog, Len(ChangeLog)-48) Else ChangeLog End As Reason
I can only go up to 48 characters.
Does...
October 25, 2012 at 10:51 am
I found this one to be very helpful.
October 9, 2012 at 11:20 am
You're right. A friend of mine helped me with this and it was the exact same thing. Thanks!
May 31, 2012 at 8:08 am
Paul Morris-1011726 (4/25/2012)
The "Both" and "Printing" selection works from the drop down list on the report... the "Copy" selection is where I...
April 25, 2012 at 7:11 am
I hope I can explain this, so here goes.
If you select Both, which has the value of B, it gives the value of '1', which the first part of the...
April 24, 2012 at 7:33 am
Daniel Bowlin (4/24/2012)
DarthBurrito (4/23/2012)
In one of the column of the report, the column has this...
April 24, 2012 at 7:13 am
Viewing 15 posts - 16 through 30 (of 55 total)