Hello everyone,
I am sorry if this has been answered a billion times but I've been trying to work at this for 9 hours now. I am very slow to pick up I just need help.
I have a table output and I just want to export it. I am honestly super tired of using SAS right now. I Just wanted to get the labels output so that I can use something I am familiar with to generate the tables. I cannot work with no labels on anything just variables not right now.
I selected the variables I wanted to see in the data set and had it "show me the code for this table"
PROC SQL;
CREATE TABLE WORK.query AS
SELECT V161192 , V161193 , V161196x , V161267 , V161270 , V161290 , V161305a , V161310x , V161342 , V161361x , V162104 , V162135 , V161237 , V162152b , V162157 , V162158 , V162165 , V162170 , V162175 , V162176x , V162177 , V162263 , V162268 , V162269 , V162270 , V162271 , V162280
FROM _TEMP0.anes_timeseries_2016;
RUN;
QUIT;
PROC DATASETS NOLIST NODETAILS;
CONTENTS DATA=WORK.query OUT=WORK.details;
RUN;
PROC PRINT DATA=WORK.details;
RUN;
I just want to take the data that it shows me in the Output tab and export it so I can use it in Tableau or excel. This is honestly the most frustrating experience of my life.