Short Summary:
Open Excel file in GUI with one row and it's records, analyze it and write back to a file.
I am working on a project that has lots of records in Excel file. The data has web URL that I have to analyze and write appropriate comments about it.
Copying and pasting can be hectic as there are hundreds and hundreds of records.
So, I am thinking to automate the process.
What I'd like to do is have a GUI that would populate one record at a time in the GUI. Open the URL in IE. It will have some extra fields (drop down, input box) in addition to its original columns so I can record the analysis data.
Based on the drop down option, it will create a document (or append if it already exists) that record. Once clicked save, it will populate the next record.
What would be a best way to go? I thought of using Visual Basic because of its GUI, but everyone knows about VB and why I should avoid it.
I'm also thinking about web app, so it will not be OS dependent, but I am not sure how Excel files work with PHP, other web scripting languages.
Any input would be greatly appreciated. If you know any tutorial that can give some insight, will also help.