Here is what I need to do, take dates queried from sql and
only display distinct dates plus the number
of times that date value appears. For instance the first
record date is 10/21/2003 and the next record is a later
date, so what would be
displayed is "1 on 10/21/2003", the next row takes the
next date e.g. 10/24/2003, but the following record is
also 10/24/2003, so
I would display "2 on 10/24/2003", and then move past the
duplicate to the next distinct date.
I'm not having much luck creating a solution. I thought
about creating child arrays for each set of dates, but
this list could potentially
be as large as several hundred records or more which would
probably start to affect server memory. Anyone have any
ideas?