Viewing 15 posts - 1 through 15 (of 116 total)
I know why because that @PayrollConfirmTable is a temporary one and thus i can't get result when I execute the table outside of the function. How can I make it...
August 18, 2017 at 3:01 am
Thank you. How could I format nicely, especially for block of sql code for better readability? I've edited select datediff(day,wr.StartDate,wr.EndDate) from WorkingRecord wr inner join EmpTbl e ON...
August 18, 2017 at 1:44 am
Gail Shaw has...
August 15, 2017 at 9:19 pm
August 15, 2017 at 9:10 pm
Thank you. I feel like I am connecting the dots. By the way, mind explaining me why you Select TOP 20 when using cross apply, rather than just select? Purely...
August 13, 2017 at 8:47 pm
Thank you for your reply and correcting my code. That parameter @EmpID I am trying to pass can't really passed into the function. I am having a gap I guess....
August 12, 2017 at 11:51 pm
Hi Thom, In SSRS, for calculating the Date Math, how could we express in a single field?
July 27, 2017 at 4:53 am
Hi Thanks for the reply. Are you referring that I should use above query mentioned by you in one data set? Or combined with the original data (select * from...
July 25, 2017 at 3:48 am
Table Definition:
Create Table ByDeptByMonth(ForMonthOf date,Department nvarchar(50),TheMonth date,NoOfCases int,Sub1 decimal(6,2),Sub2 decimal(6,2),Sub3 decimal(6,2),Sub4 decimal(6,2),Sub5 decimal(6,2),Sub6 decimal(6,2))
And Insert Statements:
Insert into ByDeptByMonth Values(GETDATE(),'IT','2016-01-01',1,100,0.44,0.71,1.15,0,0)
Insert into ByDeptByMonth Values(GETDATE(),'IT','2016-02-01',1,100,0.44,0.71,1.15,0,0)
Insert into ByDeptByMonth Values(GETDATE(),'IT','2016-03-01',1,100,0.44,0.71,1.15,0,0)
Insert into ByDeptByMonth Values(GETDATE(),'IT','2016-04-01',1,100,0.44,0.71,1.15,0,0)
Insert into ByDeptByMonth...
July 21, 2017 at 10:36 am
Thanks I get it.Declare @filter date = GETDATE()select TheMonth from DataRangewhere TheMonth<=dateadd(year,-1,GETDATE()) and TheMonth>dateadd(year,-2,GETDATE())
July 20, 2017 at 9:21 am
I see... I didn't it was sorted alphabetically in my query.
July 5, 2017 at 8:01 pm
I have solved it out. I just copy the tablix the underneath the 1st one and gave each tablix name(page name) in the properties , and then with the use...
May 4, 2017 at 2:38 am
You don't really say where you are doing this on your report but if...April 25, 2017 at 12:49 am
In my report, I don't want Report Header mainly because, it is repeating for the consecutive pages, even if I try to hide, the reserved white space still exist in...
April 10, 2017 at 9:39 pm
Viewing 15 posts - 1 through 15 (of 116 total)