I have the following code
ods select Variables;
proc contents data=xmlout.&XML_DSET;
run;
The ods pdf open statement is earlier in the code
ods pdf file="&exceldir\README.pdf" startpage=never;
title 'README FILE';
This takes xmlout.&XML_DSET and nicely puts it in a pdf for me (the ods pdf close; is later on in the code).
However!
If I put varnum to order as variable exist in the dataset like so
ods select Variables;
proc contents data=xmlout.&XML_DSET varnum;
run;
The pdf does not display the results at all!
What am I doing wrong?
Thanks!