Viewing 15 posts - 61 through 75 (of 140 total)
nm, i figured it out. i thought you needed a group in the table for the below script to work but apparently not.....
=iif(RunningValue(Fields!descr.Value & Fields!sequence.Value,CountDistinct,Nothing) Mod 2, "lightBlue", "White")
July 28, 2009 at 12:04 pm
I cant group it because the user needs to see all the details of each row (i didnt list all the columns). How do I increment for each change?
July 28, 2009 at 11:33 am
It works! Always nice to end the week this way =)
May 8, 2009 at 1:04 pm
Yea I just discovered the ReportItems collection. I will test it out.
May 8, 2009 at 9:29 am
Jack Corbett (5/5/2009)
May 5, 2009 at 12:26 pm
Sergiy (4/28/2009)
is250sp (4/28/2009)
April 29, 2009 at 8:14 am
Thanks, I've already built it in SRS as a matrix report and it works beautifully, its just the other limitations of SRS that frustrate me and eventually the end user....
April 28, 2009 at 1:39 pm
select 'John' as name ,'1234' as emplid
into #employees
select 'REG' as erncd, 'A' as status into #erncd
union
select 'OT' as erncd, 'A' as status
union
select 'OTH' as erncd, 'I' as status
select '1234' as...
April 28, 2009 at 1:09 pm
In your SQL script, you can use CAST or CONVERT to return just the date, not date/time, and use that field in your grouping.
Or (and I have never...
March 31, 2009 at 1:57 pm
GSquared (2/26/2009)
You should still be able to get that from the call to vp_wfcaudit right after that sub-query, where it's alliased as "a".
Oh I had that section commented out because...
February 26, 2009 at 8:32 am
Viewing 15 posts - 61 through 75 (of 140 total)