Tag: ods

SAS logs in Enterprise Guide: Where’s the beef?

You might be too young to remember Clara Peller. She was the star of a series of fast-food burger commercials in the 1980s, in which she demanded meatier meals by shouting “Where’s the beef?” at the pickup counter or drive-through window. Alas, …

ODS Style Manager not readily available? Use this tip from SAS Support:

Another Guest Post from Tricia Aanderud, SAS Programmer Extraordinaire!
Here’s a hint from the SAS Support site that shows you how to see all the installed templates.

If you don’t have SAS EG, this code allows you to quickly see the different styles. …

Label variable with special character

Create delta in the report and label:ods escapechar=’^’;ods rtf file=’temp.rtf’; *** Can be HTML or PDF too;proc report data=sashelp.class nowd ps=40; &nbsp &nbsp &nbsp col age new; &nbsp &nbsp &nbsp define new / format=$30. ;/* for the RTF */&nbsp &n…

Jedi SAS Tricks: Custom Bookmarks

I was building a nice little PDF report the other day.  I love the way ODS PDF replicates the SAS Results window navigation structure as PDF bookmarks, but… I’d much rather write the text for the bookmarks myself.  So, I decided to &qu…

Discovering the Power of ODS ExcelXP Tagsets

The ODS ExcelXP tagset is pretty powerful stuff. Hidding columns, changing the print layout to landscape, updating the spreadsheet names, defining the default column width and row height, etc – it’s all available using options within the ExcelXP setup….