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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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