Actually now that i think about it... i think i could create an excell macro that will grab the data and format it how i want it... seems to be the long way, but it would work.
Typically you want to avoid Word Docs... Excel is a different issue...
Try copy pasting this into a plain text file, save it to your desktop with the file extention.... .csv and it should open up just fine...
"AA","BB","CC","DD","EE","FF",
"A1","B1","C1","D1","E1","F1",
"A2","B2","C2","D2","E2","F2",
"A3","B3","C3","D3","E3","F3",
"A4","B4","C4","D4","E4","F4",
"A5","B5","C5","D5","E5","F5",
"A6","B6","C6","D6","E6","F6",
Comma Separated Value is pretty easy to work with... but some programs have a hard time making this format compatible from one program to the next due tot he way they leave out Quotes or use tabs instead of commas as the separator...
Anything fancy will require server side scripting to pre-format the text on it's way from server to the clients web-browser...
Php has built in CSV functions...
http://ca.php.net/manual/en/function.fgetcsv.phphttp://ca.php.net/manual/en/function.fputcsv.phpYou might want a database to store that data as well if your not comfortable working with the file system alone... MySql is fairly popular and comes with most Linux hosts...