How do I/can I export data like parts into an Excel document?

RebL

New Member
Good morning all,

I'm a newbie here and I'm tasked with updating a document with information about parts from the QAD database.

I'm wondering if I can export the data into an Excel document, or at the least into a .csv format?

Any assistance would be GREATLY appreciated.

Thank you,

RebL
 

TomBascom

Curmudgeon
Code:
output to value( "data.csv" ).
for each whatever no-lock:
  export delimiter "," whatever.
end.
output close.
 
Last edited:

Stefan

Well-Known Member
Code:
output to value( "data.csv" ).
for each whatever no-lock:
  export whatever delimiter ",".
end.
output close.
Coding in a browser again...

Code:
** Unable to understand after -- "export whatever". (247)
** Item must be expression, SPACE phrase, or SKIP phrase. (406)
 
Top