Next Question
RSS
Answered Question
M$10
June 07, 2009 10:25 PM
Combine a bunch of XLS files into ONE CSV file. List of all nonprofits in the US.
First person to do it TODAY (sunday) gets the tip.
All the XLS files from this page: http://www.irs.gov/taxstats/charitablestats/article/0,,id=97186,00.html combined into one CSV file, fields all in the right place.
email it to fortressgame@techhouseliving.com and let me know you have done so.
tips: use 'downThemAll' or some other extension to get all the xls files at once.
All the XLS files from this page: http://www.irs.gov/taxstats/charitablestats/article/0,,id=97186,00.html combined into one CSV file, fields all in the right place.
email it to fortressgame@techhouseliving.com and let me know you have done so.
tips: use 'downThemAll' or some other extension to get all the xls files at once.
- In Technology & Internet |
- |
- Report |
-
Share
RSS
Other Answers (1)
Buy Mahalo Dollars with Credit Card or PayPal
Top Members
Most Popular Tags
Categories
- Anonymous
- Arts & Design
- Beauty & Style
- Books & Authors
- Business
- Cars & Transportation
- Consumer Electronics
- Coupons Deals
- Education
- Entertainment
- Environment
- Fitness
- Food & Drink
- From Email
- From Iphone
- From Twitter
- Health
- History
- Hobbies
- Home & Garden
- How Tos
- Humor
- Jobs
- Legal
- Local
- Love & Relationships
- Mahalo Answers Community
- Money
- Music
- News
- NSFW
- Parenting
- Pets
- Science & Mathematics
- Services
- Shopping
- Social Science
- Society & Culture
- Sports
- Technology & Internet
- Travel
- Video Games
Welcome New Members
- victormoss, December 08, 2009 11:58 AM
- fb_609895855, December 08, 2009 11:55 AM
- grayselegy, December 08, 2009 11:22 AM
- leshlim, December 08, 2009 11:06 AM
- ramonmiguelunab..., December 08, 2009 11:05 AM
Mahalo Dollars are the currency of Mahalo Answers.
Each Mahalo Dollar costs $1.
Once you earn more than 40 Mahalo Dollars, you can request to be paid via PayPal. Each Mahalo Dollar is currently worth $0.75 when paid out via PayPal. Learn More
I don't know how you're doing this... but if it's taking you a ton of time, maybe this will help:
You're a web guy, right?
Do you have admin access to a mySQL database?
Save each file from that page as a csv and import each one mySQL (should take about 5 min of opening and saving... the import will only take a minute after converting to csv)
Then, export the combined database as a CSV.
All of this can be done pretty quickly with the point-and-click gui phpMyAdmin that's included with any cPanel host. Of course, the LOAD sql command will read a csv if you're on the command line.
I thought that I'd post this in case you were copying-and-pasting all that stuff... but you may have found a better way and if so... never mind :)
As a real world project this would take up to four hours (MD$10/4=$2.50/hr x $0.75 (real $) = $1.87/hr). Including a necessary accuracy check (cut and paste even to make one document to import is limited by max file size (depending on the text editor you use).
I'm an hour into it (doing it just for fun) and saw that wdawe is working on it so I'll step down.
I hope it's a generous tip. Good luck, wdawe!
P.S. Using the xls files is definitely the way to go. Easy to export as a CSV file too. :)
Giver WDAWE!!!!
You don't have to use a database... I thought about it more and that's overkill.
You could just save each file as a CSV and then (if you're using windows) use the copy command: copy *.csv master.csv
That'll merge all of the csv files into one master.csv file.
So really, the longest part of this task is opening them up and pressing save as. If you wanted to get really fancy and slip through this in under 10 minutes total, you could create a macro to save as, open all of the files and watch some TV while everything works away.