Hello guys, gurus and gods of excel.
I am doing an export as comma separated values file out of excel. i did manage to create the a csv file with all the sales people at the end of each day. there are two 3 sheets that i have as follows
Sheet 1
column a --> Salesperson ID
column b --> First name
column c --> Last name
column d --> effective date
column e --> term date
column a b c are text type data fields
column d e are date type data fields.
Sheet 2
column a --> Salesperson ID
column b --> Invoice no
column c --> Product name
column d --> amount
column a b c are text type data fields
column d is currency type data field.
Sheet 3
is currently blank and i am not using it.
(the column headers are not there in the actual sheet, but to explain, i gave them sample names, the actual sheet only has the data in it)
now lets say the first three lines of data are as follows
Sheet 1
6587 jake lumas 01/02/2004 05/02/2004
0543 mary edgar 01/02/2004
3545 james lomaki 01/02/2004 03/05/2004
Sheet 2
6587 td12548 facial cream 19.95
3545 td32548 massager 69.99
6587 td26584 foot cream 20.22
What i want is to create a single record for each person in the csv file by the name of dump in C:/temp folder so the full path will be C:/temp/dump.csv
what the final text file should look like is
line 1
"6587","jake","lumas","01/02/2004","05/02/2004","6587","td12548","facial cream","19.95","6587","td26584","foot cream","20.22"
line 2
"0543","mary edgar","01/02/2004",""
line 3
"3545","james","lomaki","01/02/2004","03/05/2004","3545","td32548","massager","69.99 "
it really doesnot matter how, but i need to get this up and running for tommorow morning, please help as its on my head and i am stuck with it.
thanks for your help in advance
I am doing an export as comma separated values file out of excel. i did manage to create the a csv file with all the sales people at the end of each day. there are two 3 sheets that i have as follows
Sheet 1
column a --> Salesperson ID
column b --> First name
column c --> Last name
column d --> effective date
column e --> term date
column a b c are text type data fields
column d e are date type data fields.
Sheet 2
column a --> Salesperson ID
column b --> Invoice no
column c --> Product name
column d --> amount
column a b c are text type data fields
column d is currency type data field.
Sheet 3
is currently blank and i am not using it.
(the column headers are not there in the actual sheet, but to explain, i gave them sample names, the actual sheet only has the data in it)
now lets say the first three lines of data are as follows
Sheet 1
6587 jake lumas 01/02/2004 05/02/2004
0543 mary edgar 01/02/2004
3545 james lomaki 01/02/2004 03/05/2004
Sheet 2
6587 td12548 facial cream 19.95
3545 td32548 massager 69.99
6587 td26584 foot cream 20.22
What i want is to create a single record for each person in the csv file by the name of dump in C:/temp folder so the full path will be C:/temp/dump.csv
what the final text file should look like is
line 1
"6587","jake","lumas","01/02/2004","05/02/2004","6587","td12548","facial cream","19.95","6587","td26584","foot cream","20.22"
line 2
"0543","mary edgar","01/02/2004",""
line 3
"3545","james","lomaki","01/02/2004","03/05/2004","3545","td32548","massager","69.99 "
it really doesnot matter how, but i need to get this up and running for tommorow morning, please help as its on my head and i am stuck with it.
thanks for your help in advance