Trying to accomplish following:
DATA TABLE1;
SET TABLE2
TABLE3
TABLE4
TABLE5;
KEEP OBS1 OBS2 OBS3;
WHERE INTNX('MONTH', OBS4, 0) = INTNX('MONTH', TODAY(), -1);
OBS4 is DATETIME21.2 formatted.
I've tried:
PMONTH=INTNX('MONTH', OBS4, 0);
and it comes back null.
If it is a datetime variable that means you would need to put datepart() around the variable. E.g;
where intnx('MONTH', datepart(OBS4), 0) = intnx('MONTH', today(), -1);
Here is a solution:
data have;
input obs4;
informat obs4 datetime21.2;
format obs4 datetime21.2;
cards;
27OCT2015:05:39:48.00
;
data want;
set have;
format pmonth date9.;
pmonth = intnx('month',datepart(obs4),-1,'same');
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.