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-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 21 replies
  • 1693 views
  • 6 likes
  • 4 in conversation