Viewing 15 posts - 76 through 90 (of 184 total)
No Worries, Tweaking the query made the difference
November 14, 2014 at 12:13 pm
Well, This did the trick...IIF(Parameters!TEAM.Count =Count(Fields!TEAM.Value, "Parameter"),"All Group",Join(Parameters!TEAM.Value, ", "))
October 29, 2014 at 2:51 pm
I am following this thread , but it isn't very clear.
Can someone give step by step detail for 2012.
September 16, 2014 at 12:37 pm
All I am trying to do is get a format which is like CURdate in SQL.
September 4, 2014 at 12:26 pm
True, I cannot change the table .
Name is the name of the person , Project is the projectname and all the weeks represent the hours worked on the project.
July 25, 2014 at 8:34 am
I should have added this too:
Insert INTO #mytable
(Month_Year ,MyMonth,MyYear,ACC_Opened ,ACC_Opened ,ACC_Closed ,ACC_Backlog ,TimeStamp )
Select 'Apr-2014', '4', '2014','Investments','128','133','12', '2014-06-11 09:57:55.477'
UNion All
Select 'Aug-2013', '8', '2013','Investments','118','143','10', '2014-06-11 09:57:55.477'
UNion All
Select 'May-2014', '5',...
June 26, 2014 at 11:14 am
Here it is :
CREATE TABLE #mytable
(
Month_Year Varchar(10),
...
June 26, 2014 at 11:09 am
Viewing 15 posts - 76 through 90 (of 184 total)