January 28, 2010 at 4:53 am
Hi All, I need a help on displaying dates in Name and dd-mm-yyyy on the particular month, when there is no data on the date, the dates are not coming in reports. attached the screen shot of what i am getting from RS and what i am expecting, please give me your valuable advice on how to get the information.
Thanks
Jprakash
January 28, 2010 at 5:14 am
For converting the number to a date, you can use the DateSerial function:
Description
Returns a Date value representing a specified year, month, and day, with the time information set to midnight (00:00:00).
Examples
=DateSerial(DatePart("yyyy",Fields!BirthDate.Value)-10, DatePart("m",Fields!BirthDate.Value)+3,DatePart("d",Fields!BirthDate.Value)-1)
=DateSerial(DatePart(DateInterval.Year,Fields!BirthDate.Value)-10,DatePart("m",Fields!BirthDate.Value)+3,DatePart("d",Fields!BirthDate.Value)-1)
=DateSerial(2007,10,24)
To get the name of the day, use the following Expression
=weekdayname(weekday(now()))
where you replace now() with your date(time) field.
January 29, 2010 at 7:22 am
Hi Willem,
the query i have used in sql is
SELECT DATEPART(YY, CHECKINTIME) AS Year, DATEPART(MM, CHECKINTIME) AS
Month, DATEPART(D, CHECKINTIME) AS 'Date', SUM(UPLOADLNCNT)
AS 'Total Lines', TRUSTID
FROM DEPTABLE
GROUP BY DATEPART(yy, CHECKINTIME), DATEPART(M, CHECKINTIME), DATEPART(D,
CHECKINTIME), TRUSTID
ORDER BY Year DESC, Month DESC, 'Date' DESC
and i tried the examples, but still i am getting error.
Please help me on this
January 29, 2010 at 7:42 am
January 29, 2010 at 8:26 am
Hi Willem, attached the screenshot
The error i am getting is in reports as #Error in the day number which was displaying earlier, and in reports on expression i have used
=DateSerial(DatePart("YYYY",Fields!Year.Value)-10, DatePart("m",Fields!Month.Value)+3,DatePart("d",Fields!Date.Value)-1)
January 29, 2010 at 10:20 am
If try something simple, it might make things easier and less errors,
If you could return the CHECKINTIME, just go the the Text Box Properties, in the Number/Custom section, using Custom Format:
dddd, will show name of weekday, like Monday, Tuesday...
d-MMM-yyyy, will show format of 0-Jan-2010...
January 29, 2010 at 1:04 pm
February 2, 2010 at 4:28 am
Hi Willem, thanks its working fine now, i have used
=DateSerial(Fields!Year.Value-10, Fields!Month.Value+3,Fields!Date.Value-1) in Expression on that column and in same column text box properties > Number > in category i chose date and in type 31-Jan-2000, but now only thing is i am not getting all the dates of the month january, coz there are no data's in 1st,2nd and 3rd date, i need to display whole of jan month with date's and in the data column as 0.
do i need to change the query, if yes, can you please help on the query
Thanks,
Jprakash
February 2, 2010 at 6:02 am
Hi Willem, i tried on this query
select x.TRUSTID,Y.Date1, isnull(x.total,0) from
(select TRUSTID, Date=convert(varchar(25),UPLOADTIME,103),
Total=SUM(uploadlncnt) from DCLIVEJOBS where UPLOADTIME between '2010-01-01' and '2010-01-31'
group by TRUSTID,UPLOADTIME
)X
right outer join
(select '' as TA_A_NAme,convert(varchar(25),DATE,103) as date1,0 as Total from dbo.F_TABLE_DATE('01-Jan-2010','31-Jan-2010')
)Y on Y.Date1=X.Date order by Y.Date1
but i am getting 0 below the date column with a new row added (attached the screenshot), and more over i need to add a new row below the date date row and display the date as 31-Jan-2000
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply