data _null_;
lastWed = intnx('week', today(), 0, 'b') - 4;
call symputx('lastWed', put(lastWed, ddmmyyn8.));
run;
%put &lastWed.;
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
68
69 data _null_;
70
71 lastWed = intnx('week', today(), 0, 'b') - 4;
72
73 call symputx('lastWed', put(lastWed, ddmmyyn8.));
74
75 run;
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
user cpu time 0.00 seconds
system cpu time 0.00 seconds
memory 482.90k
OS Memory 23456.00k
Timestamp 10/15/2020 02:21:44 AM
Step Count 30 Switch Count 0
Page Faults 1
Page Reclaims 153
Page Swaps 0
Voluntary Context Switches 1
Involuntary Context Switches 0
Block Input Operations 344
Block Output Operations 0
76
77 %put &lastWed.;
07102020
78
79 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
89
... View more