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

Hi

I am running one program in the database. But getting error in log window as

Invalid (or missing) arguments to the DATEPART function have caused the function to return a missing value.

How to get rid of it.

proc sql;

create table x as

select m.case_id, m.case_num,datepart(p.pat_dob) as pat_dob format =date9.

from master as m,

(select case_id, pat_dob from patient p where length(pat_dob_partial) in (11,17)) p

where m.case_id = p.case_id;

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Is pat_dob actually a SAS datetime variable? You might want to check.

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

Is pat_dob actually a SAS datetime variable? You might want to check.

dash
Obsidian | Level 7

Yes,

pat_dob is a datetime variable.

What can I do. Please suggest

art297
Opal | Level 21

First, remove the correct and helpful statuses of your and my posts .. your question has not been answered.

I didn't ask if it was a datetime variable but, rather, whether it was a SAS datetime variable.  Often people import data that contains a datetime variable, but the variable ends up in a SAS dataset as a character variable.  If you run the following:

proc contents data=master;

run;

what kind of variable does the system indicate pat_dob is?

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1019 views
  • 3 likes
  • 2 in conversation