libname fmts "/temp/formats";proc format library=fmts cntlout=fmts.fmtout;run;
Read more »
libname fmts "/temp/formats";proc format library=fmts cntlout=fmts.fmtout;run;
Read more »
PVALUEw.d
Read more »
data fmt(keep=fmtname start label);      set temp;      fmtname="TRTFMT";      start=trtgrp;      label=trtlbl;run;proc format library=work cntlin=fmt;run;=================TEMP:trtgrp      trt...
Read more »
Here's a situation that comes up pretty often. You receive a file that contains zip codes. It's an excel file and you need to create a SAS data set out of it, so you can do some nifty market analysis. No problem, you clickety clickety through the SA...
Read more »
proc catalog catalog=library.formats;        delete yn.format dnk.formatc;quit;*** yn is numeric format, dnk is character format;
Read more »
SAS Macro to process date/time
Read more »
ISO 8601What's new is BASE SAS 9.2
Read more »
for a little over a year now, i’ve been enjoying a little macro i wrote for writing date values in a variety of formats. the macro also integrates the intnx function (hence the ‘dynamic’ part). this allows me to easily use dynamic dates in both o...
Read more »