asp.net - how to use Group By in RDLC Report ( Group data by Date )? -
i have report shows monthly attendace of employee.. each day has 2 or more 2 entries employee , 1 when signin , other when leaves have use group days this,
note: inout 1 = timein inout 2 = timeout
tid attendancedate empid inout
01 nov 2010
37219 2010-11-01 09:01:00.000 0000000001 1
37109 2010-11-01 18:02:00.000 0000000001 2
02 nov 2010
37219 2010-11-01 09:01:00.000 0000000001 1
37219 2010-11-01 09:16:00.000 0000000001 1
37109 2010-11-01 18:02:00.000 0000000001 2
i have use =fields!attendancedate.value in parent group , included group header
the problem report showing 1 record in each group.. please tell me how can this?
when group date, including time, each second produce new group.
try format string exclude time like:
format(fields!attendancedate.value,"mm/dd/yyyy")
Comments
Post a Comment