Hi
not sure this is the most efficient and it would depend on how many dates
you have but you can use two helper columns to give you the information you
want
assuming the list below is in column A starting at row 1
in cell B1 type
=A1
in cell B2 type
=IF(A2-1=A1,IF(A2+1=A3,"",A2),A2)
and fill down your list of numbers (easiest way, is to move cursor over
bottom right of B2 until you see an + and then double click) - this will
give you the start & ending value of each run
in cell C1 type
=1
in Cell C2 type
=IF(B2="",C1+1,IF(B1="",C1+1,IF(A2=A1+1,C1+1,1)))
and fill down
this should give you the count of each run.
Hope this helps
Cheers
JulieD