Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Count Consecutive Days

Status
Not open for further replies.

nolanma

MIS
Aug 3, 2006
9
0
0
US
Hi,
I have a report where I need to count consecutive days worked by employee. I have a running count of the days, however, I need to reset the count when the dates are not consecutive.

For Example:

I need to count the days, but I need it to reset after 01/11/13, since 01/12 and 01/13 were not worked.
So, the count should be as follows:

Dates:
01/07/13 - 1
01/08/13 - 2
01/09/13 - 3
01/10/13 - 4
01/11/13 - 5
01/14/13 - 1
01/15/13 - 2
01/16/13 - 3
01/17/13 - 4
01/18/13 - 5

Can someone provide the correct syntax to count the consecutive days? Any assistance is greatly appreciated! Thank you!













 
I forgot to mention that I am using Cognos Report Studio Version 8.4.
Thanks.
 
I don't have RS, but I have had to deal with this issue before, and used grouping by row numbering in the database to provide a view on the table to join back.

Some SQL code on your example, which may help:
Code:
Create Table TestDates(TestDateField smalldatetime)
go
insert into TestDates(TestDateField) values('01/07/2013')
insert into TestDates(TestDateField) values('01/08/2013')
insert into TestDates(TestDateField) values('01/09/2013')
insert into TestDates(TestDateField) values('01/10/2013')
insert into TestDates(TestDateField) values('01/11/2013')
insert into TestDates(TestDateField) values('01/14/2013')
insert into TestDates(TestDateField) values('01/15/2013')
insert into TestDates(TestDateField) values('01/16/2013')
insert into TestDates(TestDateField) values('01/17/2013')
insert into TestDates(TestDateField) values('01/18/2013')
go

Select TestDates.TestDateField, row_number() over (partition by DateGroup order by TestDateField) as DateSequence from TestDates 
inner join 
--THIS SECTION IS THE GROUPING "VIEW"
(
 Select DateGroup, Min(TestDateField) as LowerDate,Max(TestDateField) as UpperDate 
 from 
 (
  Select TestDateField,TestDateField + row_number() over (order by TestDateField desc) as DateGroup 
  from TestDates
 )DateList
 group by DateGroup
)dategrouping 
on TestDates.TestDateField between dategrouping.LowerDate and dategrouping.UpperDate

Drop Table TestDates
go

soi là, soi carré
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top