Hi,
Could someone help me how can i get the difference b/w target and actual completion of dates.
As per the image first row will give me -18 days whereas, the rest isn't giving me any overdue days. Could you please help me how to get the days count when actual is overdue with target date.
For getting days i have used :
proc sort data = safety_act; by INSPECTION; run;
data sa_date_diff;
set safety_act;
by INSPECTION;
days = intck('dtday',ACTION_TARGET_COMPLETE,ACTION_ACTUAL_COMPLETE);
put days=;
run;
So in a data step, assign today's date and time to the variable ACTION_ACTUAL_COMPLETE if it is missing.
The output is correct. After row one, since there is no ACTION_ACTUAL_COMPLETE, the number of DAYS should be missing. How could the answer be anything else?
Yes, you are right.
I want to show the number of over due days from Target date something like 3 days if i consider 26th June to till date(today).
So in a data step, assign today's date and time to the variable ACTION_ACTUAL_COMPLETE if it is missing.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.