Viewing 15 posts - 31 through 45 (of 152 total)
I want them to be independent columns, next to each other.
December 4, 2014 at 5:19 am
Thank you, this what I did
=DateSerial(Year(Now), Month(Now), "1").AddMonths(1).AddDays(-1)
October 20, 2014 at 2:18 am
Argument not specified for parameterValue of Public Day(DateVlaue) As Integer
October 17, 2014 at 8:24 am
I also tried
=IIF(Format(Parameters!Start_Date.Value, "MMM") = Format(Parameters!End_Date, "MMM"), IIF(Format(Parameters!Start_Date.Value, "yyyy") = Format(Parameters!End_Date, "yyyy"), Globals!ReportName & " from " & Format(Parameters!Start_Date.Value, "dd") & " - " & Format(Parameters!End_Date.Value, "dd MMM yyyy"),...
October 10, 2014 at 3:09 am
Yes Scheme Code is s_code is the table.
August 25, 2014 at 5:55 am
declare @ToDate datetime
declare @FromDate datetime
set @FromDate = '1 Feb 2014'
set @ToDate = '28 Feb 0014'
SELECT EVENTDATE,'' AS BRANCHCD, BUSINESS_AREA, CREATE_DATE, WORK_TYPE, QUEUE, STATUS, CREATE_AGE, CATEGORYCD, DELAYREASON1, DELAYREASON2
...
July 21, 2014 at 7:29 am
I just corrected it and I get this error "The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value."
July 21, 2014 at 7:17 am
@BWFC
The code is this:
declare @ToDate datetime
declare @FromDate datetime
set @FromDate = '01/02/20014'
set @ToDate = '28/02/20014'
SELECT EVENTDATE,'' AS BRANCHCD, BUSINESS_AREA, CREATE_DATE, WORK_TYPE, QUEUE, STATUS, CREATE_AGE, CATEGORYCD, DELAYREASON1, DELAYREASON2
...
July 21, 2014 at 7:10 am
They are two different Code but share those similarities. I thought this code was clear because it doesn't have much Columns.
July 8, 2014 at 3:06 am
Viewing 15 posts - 31 through 45 (of 152 total)