calculate the months , weeks, days seperately since coupon expiry date from current date to 31 march 2014.
data _class_s;
date1 = '21OCT2017'd;
date2 = '31MAR2014'd;
no_of_months = intck ('MONTH', date1, date2);
no_of_weeks = intck ('WEEK', date1, date2);
no_of_days = intck ('DAY', date1, date2);
format date1 date2 date9.;
proc print data = _class_s noobs;
run;
can any1 please tell me whati have to do to add coupon expiry date in this code .
As I read your homework, you have to run a do loop from the current date back to March 31, 2014.
As I read your homework, you have to run a do loop from the current date back to March 31, 2014.
sir can you please tell me how can i take difference between the var called coupon id , current date and 31march
@mehak wrote:
sir can you please tell me how can i take difference between the var called coupon id , current date and 31march
Differences are calculated with a subtraction. Date and time differences are calculated with intck, as you already know.
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.