Calculating the number of working days between two dates

This post was kindly contributed by The SAS Dummy - go there to comment and to read the full post.

It’s a simple task to use SAS to compute the number of weekdays between two dates. You can use the INTCK function with the WEEKDAY interval to come up with that number. diff = intck(’WEEKDAY’, start_date, end_date);  If you want to compute the number of working days between two dates, […]

This post was kindly contributed by The SAS Dummy - go there to comment and to read the full post.