BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ywon111
Quartz | Level 8

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

1 ACCEPTED SOLUTION

Accepted Solutions
ywon111
Quartz | Level 8
Thanks for your reply.

Just want to get week days for now.

View solution in original post

4 REPLIES 4
ChrisNZ
Tourmaline | Level 20

Different countries have different holidays.

How do you identify a working day?

ywon111
Quartz | Level 8
Thanks for your reply.

Just want to get week days for now.
PGStats
Opal | Level 21

intck("weekday", t1.event_from_date, "&extdate"d) as dateDiff,

PG
ywon111
Quartz | Level 8

Solved, just use intck 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1126 views
  • 0 likes
  • 3 in conversation