in reply to Re: EXCEL TO HTML Conversion w/Perl
in thread EXCEL TO HTML Conversion w/Perl
Hi David,
This is how my excel work books look like:
Milestone.xls
| MilestoneID | Task IDs |
| Milestone1 | Task1a, Task1b, Task2a, Task2c |
| Milestone2 | Task1c, Task2a, Task1d, Task2b |
Where the Tasks come from TaskList1.xls and Tasklist2.xls. These files look like this (as an example snippet from TaskList1.xls):
| TaskID | Task Description | Start Date | End Date |
| Task1a | Task1a Description | 06/10/04 | 06/12/04 |
| Task1b | Task1b Description | 06/13/04 | 06/15/04 |
So on and so forth...
What I need to do is, open and read the Milestone.xls to get the Milestone and the task IDs. Then query these task IDs in the TaskList1.xls and Tasklist2.xls and then generate a "schedule" table for each milestone by getting the start and end dates for each task.
I am looking for either a code snippet or an "efficient" way to do this.
One suggestion I got was to read the Tasklist1 and Tasklist2 excel files into memory (hash table??) and then query since the Task IDs are unique.
Any help would be greatly appreciated.
Thank you very much.
Wisdom Seeker, Andy
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: EXCEL TO HTML Conversion w/Perl
by davidj (Priest) on Jun 08, 2004 at 01:10 UTC | |
by ginju (Novice) on Jun 08, 2004 at 01:55 UTC |