Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know if through Java i can compare the values in columns A to seperate out only each person's name and then further seperate out what the largest number in column B would be.

So basically i want to find the best time for each runner

I would mostly just like to understand if the question is possible and a little bit about how.

Say i have an excel spreadsheet where column A has the name of participants of a track team. These names are repeated multiple times.

Column B has the run times in seconds of each runner throughout a season.

Column C has the date of the time.

A                 B                     C
John             20                    1/26/2012
John             18                    1/27/2012
John             17                    1/28/2012
Cindy            21                    1/26/2012
Cindy            20                    1/27/2012 
Cindy            18                    1/28/2012
share|improve this question

2 Answers

If you export Excel file as CSV you may:

share|improve this answer

You can use a third party library like Apache POI for loading the data. Once you have your data model loaded, you can do whatever you find appropriate with it, including the sorting.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.