Hi,
I am just trying to figure out how to access some data.
Currently it is stored in a spread sheet in the following form........
8/11/09 9/12/09 .... mm/dd/yy
name score score .... score
name2 score score .... score
there will be many names (and more may be added at any time) also dates and scores will be added throughout the year for each name.
I will need to read the name with the date and score in order to do some calculations with the scores and print various reports and statistics. Because of the fluidity of data I was thinking Array List. But perhaps I can just use the spread sheet?
Basically each column is named by a date and each name row has scores in each date column or no score which represents null (not 0).
Any ideas?