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, …
Tag: ods
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. …
ODS EMAIL Output – When text/html doesn’t work use MSOFFICE2k Tagsets
Guest Post from Tricia Aanderud, SAS Programmer Extraordinaire (meaning she’s BASE SAS Certified and an awesome programmer!)
When I send ODS HTML email to Outlook 2007, it is ugly. After a lot of research, I finally found the answer on the SAS Support…
Generate RTF, XML, PDF, and Excel files with ODS and SAS/IntrNet
SAS IntrNet
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;       col age new;       define new / format=$30. ;/* for the RTF */  &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….