- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted a week ago
(380 views)
Is it possible to tell VA to interpret ods escapechar='^' like I would do in SAS Studio?
/* This produces nice output (linebreaks) in SAS Studio */
ods escapechar='^';
proc cas;
table.fetch / table={name="myTable" caslib="public"}, to=1;
run;