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

Hi there,

I am trying to use the weekday function but I am having some error. If someone could help me out here that would be great! Thanks.

I am doing a simple:

weekday=weekday(occurred_at) but keep getting errors. Not sure why.

Below is the result from proc contents:

6 occurred_at Num 8 DATETIME. DATETIME.

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

According to the doc

SAS(R) 9.4 Functions and CALL Routines: Reference, Fourth Edition

the WEEKDAY function expects a date, rather than a datetime.  Try this:

weekday = weekday(datepart(occurred_at));

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

According to the doc

SAS(R) 9.4 Functions and CALL Routines: Reference, Fourth Edition

the WEEKDAY function expects a date, rather than a datetime.  Try this:

weekday = weekday(datepart(occurred_at));

ali_hash
Calcite | Level 5

Thank you, Rick!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1726 views
  • 0 likes
  • 2 in conversation