I'll do this for you guys just tell me how.
I got all the info, how do I merge spreadsheets?
I'm not counting/averaging by hand, each's order is completely different.
I could upload the csv files to a database and somehow query the rows that all have the same player name?
I'm lost as to how to combine them
Someone else can walk you through some fairly easy ways to do it in a database.If you want to do it in Excel here is a way. This assumes that all the names are listed the same (i.e. no Mike Vick in one list and Michael Vick in another), and that no players have the identical first/last name.
1. Combine the first and last names of each player into a cell (using =A1&B1). This will give you a fairly nonrepeatable ID.
2. Sort the list with the ADPs by alphebetical order.
3. Repeat 1&2 for every list you want to combine.
4. On a different part of the spreadsheet copy all the combined names.
5. Use the vlookup function on the combined names to lookup the ADP in the other lists. (using =vlookup(cell with combined name,list you are looking up from fixed with $ signs, the number of columns you want to have to go over from the combined name to the ADP data,false))
6. Repeat 5 for the other lists.
7. Average the ADPs, sort by lowest to highest ADP.
PM me if this doesn't make sense.