Attending SAS Global Forum 2013? You Are Invited to a TweetUp!

TweetUp Image

Hello, G’Day, Hola, Hej, Bonjour, Hallo! In April SAS users travel across the world to the SAS Global Forum in San Francisco.  If you are arriving early – then you’re invited to a special event.

Tweeps Unite!
There is an informal, pre-conference gathering for tweeps on Saturday 27th April at 8 PM at the Marriott Marquis. …

The post Attending SAS Global Forum 2013? You Are Invited to a TweetUp! appeared first on Business Intelligence Notes for SAS® BI Users. Written by .

Localize Your Macro Variable? Mostly Not Needed or Do It If You Only Want to Initiate It

A piece of SAS codes to create a list of all variables within a dataset (a nice programming trick from Art Carpenter, 2004): %macro getvars(dset) ;    %local varlist ;     %let fid = %sysfunc(open(&dset)) ;     %if &fid %then %do ;         %do i=1 %to %sysfunc(attrn(&fid,nvars)) ;             %let varlist= &varlist %sysfunc(varname(&fid,&i));         %end […]

These are a Few of My Favorite Things… about the SAS Enterprise Guide Program Editor

EGcleancode

This is the last of what I planned as a three-part miniseries sharing some thoughts on using SAS Enterprise Guide as a programmer.  The first couple posts described what I think of as big benefits of Enterprise Guide: using process flows as a workspace to organize the code in a …

The post These are a Few of My Favorite Things… about the SAS Enterprise Guide Program Editor appeared first on Business Intelligence Notes for SAS® BI Users. Written by .