BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Reeza
Super User
Why isn't the last record included in the count?
mona4u
Lapis Lazuli | Level 10


I only count the blanks in assigned_to
if the value of task was in the result
"irRC RECIST Oncology" is not one of the variable result's values

Reeza
Super User

if the value of task was in the result

 

How is this identified? Do you have a list somewhere that identifies what's valid and what's not? 

mona4u
Lapis Lazuli | Level 10
I don't have a list
the idea is I should include whatever is task_name if the email has "clinical.com"
I want the program to be able to create a list automatically and then
check the blanks assigned_to if anything of the list is there
Reeza
Super User

Create your list then first:

 

proc sql noprint;
select distinct quote(task_name) into :task_list separated by ", "
from have
where email like '%@clinical.com';
quit;
%put &task_list;

If the macro variable is  too long you'll need a different approach.

mona4u
Lapis Lazuli | Level 10

So The only way to do is by proc sql. 

I thought there is a better way by the data step 

 

THANKS SO MUCH 

Reeza
Super User

@mona4u wrote:

So The only way to do is by proc sql. 

I thought there is a better way by the data step 

 

THANKS SO MUCH 


It can probably be done in a data step as well, it would be a bit more code though. I thought the SQL  would be easier is all, for combining things across groups  it often is. 

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!

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
  • 21 replies
  • 944 views
  • 6 likes
  • 4 in conversation