Hi,
I know I read about this somewhere, but I just can't find it again.
I am trying to write a script that will transfer data from a CSV file
to an Excel spreadsheet. The data has to do with the status of trouble
tickets. There can be any one of five different statuses for each
tech. There could be one or five or none. the data looks like this;
"Problem ID +","Assignee ","Status","D/T Reported +"
"PRB000007683094","joe.tech","New","3/30/2007 9:00:30 AM"
"PRB000007663668","joe.tech","Service Restored","3/23/2007 8:25:40 AM"
"PRB000007671182","dan.man","In Progress","3/26/2007 7:24:33 PM"
"PRB000007618787","dan.man","Service Restored","3/7/2007 10:50:10 AM"
"PRB000007671271","dan.man","Service Restored","3/26/2007 9:47:17 PM"
"PRB000007680738","dan.man","Service Restored","3/29/2007 11:50:54 AM"
"PRB000007652289","dan.man","Service Restored","3/19/2007 6:36:24 PM"
"PRB000007667099","dan.man","Service Restored","3/25/2007 3:48:01 AM"
"PRB000007489048","freebird","Pending","1/18/2007 12:30:31 PM"
"PRB000007621881","black.hat","Service Restored","3/8/2007 9:10:14 AM"
"PRB000007612876","jarhead","On Hold","3/5/2007 3:35:12 PM"
"PRB000007613512","jarhead","Service Restored","3/5/2007 6:00:28 PM"
If id do an If Then Else statement I only get one type, if I do a
Select case statement I get one type. How can I get each of them into
its proper place?