Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Please could anybody help with a file

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Please could anybody help with a file

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Please could anybody help with a file

This website doesn't allow attachments. Sent to my email address


I will look at this weekend.

"Eduardo" wrote:

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Joel, I've sent the file thanks again for your help

"Joel" wrote:

This website doesn't allow attachments. Sent to my email address


I will look at this weekend.

"Eduardo" wrote:

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default Please could anybody help with a file

It would appear that saving Excel data in EDI format is not a trivial task:
http://edidev.com/XMLvsEDI.html

And these seem aimed at Java, but may be useful:
http://www.americancoders.com/OpenBu...cts/index.html
http://www.stylusstudio.com/data_conversion.html

NickHK

"Eduardo" wrote in message
...
I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?



  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Hi Joel, when trying to run the macro give me an error message "Run-time
error '76": Path not found, when debug is highlighting "fs.CreateTextFile
MyFileName 'Create a file "
Thanks Eduardo

"Joel" wrote:

This website doesn't allow attachments. Sent to my email address


I will look at this weekend.

"Eduardo" wrote:

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Hi Joel, I found what was wrong, now macro is working, thanks

"Joel" wrote:

This website doesn't allow attachments. Sent to my email address


I will look at this weekend.

"Eduardo" wrote:

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,276
Default Please could anybody help with a file

Joel, thank you very much for your help it works perfectly, without your help
it'd be impossible for me to get that macro. My expertise is accounting,
budgeting and forescating if at any time you need some help don't hesitate to
contact me. Thank you again

"Eduardo" wrote:

Hi Joel, I found what was wrong, now macro is working, thanks

"Joel" wrote:

This website doesn't allow attachments. Sent to my email address


I will look at this weekend.

"Eduardo" wrote:

Joel, I have some documentation in word but as this is my first time posting
a question I don't know how to attach the document, I've tried to paste it
but unsuccefully,
Eduardo


"Joel" wrote:

I don't know what EDI format is. It doesn't look like the two files contain
the same data (EDI and spreadsheetA). I have written plenty of I/O programs
converting text from one format to another.

Using VBA you can open a text file and same the worksheet format to the text
file any way you want to.

If you give more info on the EDI format I can help
"Eduardo" wrote:

Joel, thank you for answering my question, what happens is that I need to put
the information in an EDI format as follow:

ISA*00* *00* *ZZ*46 *01*254185739
*070212*0738*|*00406*000000016*0*P*:~
GS*PO*46*254185739*070212*0738*16*X*004060~
ST*850*0000031~
BEG*00*SA*TestOrder1**20070212~
DTM*064*20070212~
DTM*063*20080212~
MSG*CommentLine~
N1*ST**92*24KARA~
PO1**4**8.50**VN*EV0336-001~ (4=quantiy of my order,8.5 price,ev0336=item
code)
PO1**14**9.50**VN*EV0346-001~
PO1**24**11.50**VN*EV0396-001~
PO1**124**18.50**VN*EV0936-001~
CTT*4*~
SE*14*0000031~
GE*1*16~
IEA*1*000000016~

From above I need to figure out, how to get there the information related to
the quantity, item code and price
"Joel" wrote:

SAve the file as text or CSV.

"Eduardo" wrote:

I have an order form for product in an excel file like this
Item Description Unit Quantity CaseSelling PriceQuantity


F1AL1080 Capless KG 83.49 5 9.68 1
F1AL1085 Whole KG 100.09 3 24.739 1
F1AL1091 RTS KG 404.46 21 9.68 1

What I need to do is to create an EDI file with the above information in
order to be able to import that file into my system

Could anybody help me?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
File:1 and File:2 -- Double Files when Opening One File dallin Excel Discussion (Misc queries) 1 January 25th 07 02:53 AM
I saved file A over file B. Can I get file B back? Lynn Excel Discussion (Misc queries) 2 May 12th 06 11:24 AM
opening an excel file opens a duplicate file of the same file skm Excel Discussion (Misc queries) 1 December 7th 05 05:52 PM
I SAVED A FILE OVER ANOTHER A FILE IN EXCEL. THE OLD FILE WAS AN . DUFFER8MCD Excel Discussion (Misc queries) 1 December 23rd 04 11:32 PM
i received a file that reads powerpoint document file file exten. CCAROLACEREC Excel Discussion (Misc queries) 1 December 4th 04 05:02 PM


All times are GMT +1. The time now is 11:04 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"