Scott,
Thanks for the reply on that. I'd noted the LABEL="" statement, yet I'm honestly unsure where to put it in my program. If this helps, here's a basic look at my program:
data LibraryX.TABLEX;
infile test.txt;
format FIELD1 $20; format FIELD2 $30;
informat FIELD1 $20; informat FIELD2 $30;
input FIELD1 $
FIELD2 $;
output; end; run;
Would it be possible to look at that and tell me where (and how) that would go if I wanted to give my table (TABLEX) a label of "Data Table X"?
Again, thanks in advance, and I appreciate your time.
d