This gives me number of days for datediff, but trying to get working days only:
PROC SQL;
CREATE TABLE a AS
SELECT
t1.industry,
"&extdate"d+1 - t1.event_from_date as datediff
FROM sss t1
...
Thanks
Different countries have different holidays.
How do you identify a working day?
intck("weekday", t1.event_from_date, "&extdate"d) as dateDiff,
Solved, just use intck
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.