Hello
I am using proc export to export sas data set into tXT file.
I want to have in the txt file Column Labels instead of Column Names.
I opened the txt file via notepad and I see that columns headers are:
"Client_Name"
"Gender"
"Age"
"Height"
"Weight"
My question- Why do I see double markers (") on col headers?
What is the way to remove the double marks (")?
data Have;
Set sashelp.class;
if sex='F' then age=.;
label
Name='Client_Name'
Sex='Gender'
Age='Age'
Height='Height'
Weight='Weight'
;
run;
proc export data=Have
outfile="/usr/local/SAS/SASUsers/LabRet/Adhoc/creditCards/Ron4.txt"
dbms=tab
label
replace;
run;