Hello all,
I'm trying to export a csv file using the %ds2csv macro.
I want to put the delimiter semi column ' ; ' instead of comma ' , ' or ' | '
My code is below
%ds2csv
(data = work.myfile, runmode = b, csvfile = &file.&mydir./myfile.csv, sepchar = 7C, colhead = y);
Which sepchar should I use for semi column ' ; ' please?