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!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2091 views
  • 0 likes
  • 2 in conversation