how to exclude header from browse during export to csv

Winqad

New Member
How to export the data from the browse without header .
I need the file in a csv format only with data and no field labels
 
Last edited:
No way that I know of but you can use even a simple DOS command line to copy to a file to another starting after a given number of lines. Linux will have its own options. This will copy one file to another skipping first line.

more +1 FILE-WITH-LABEL.csv > FILE-NO-LABEL.csv

if you put that in a script/code you can automate... run the command, delete the original file, rename the second one to the first one
 
Top