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

Hi all,

 

I'm trying to select variable names and want to sum them to create a new variable. Following code works:

 

proc sql noprint;
  select distinct FieldName into : name_list separated by ',' from master_data;
  quit;

%put &name_list;

data results_final;
set results_final;
summary = sum(&name_list);
run;

Now I want to do the same thing with an additional condition that involves a where clause. This is not working. could you please help?

 

proc sql noprint;
  select distinct FieldName where male = 1 into : male_name_list separated by ',' from master_data;
quit;

%put &male_name_list;

data results_final;
set results_final;
summary_male= sum(&male_name_list);
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ss59
Obsidian | Level 7

Figured it out. where clause should go at the end.

 

proc sql noprint;
  select distinct FieldName into : male_name_list separated by ',' from master_data where male = 1;
quit;

%put &male_name_list;

data results_final;
set results_final;
summary_male= sum(&male_name_list);
run;

View solution in original post

4 REPLIES 4
ss59
Obsidian | Level 7

Figured it out. where clause should go at the end.

 

proc sql noprint;
  select distinct FieldName into : male_name_list separated by ',' from master_data where male = 1;
quit;

%put &male_name_list;

data results_final;
set results_final;
summary_male= sum(&male_name_list);
run;
RW9
Diamond | Level 26 RW9
Diamond | Level 26

That's a very odd way to be coding, does your data have columns for each of the names?  You would find it far simpler to normalise that data, then just sum based on logic in one simpler datastep, you can drop all the macro and proc sql then.

gamotte
Rhodochrosite | Level 12

Hello,

 

Here is a solution that avoids using a list of names in a macrovariable

 

data persons;
input name $ male;
cards;
John 1
Mary 0
Peter 1
Robert 1
Jane 0
Lucy 0
William 1
Richard 1
Anna 0
;
run;

data results;
input John Mary Michael Peter Sylvia Robert Jane Lucy William Charlotte Richard Annna;
cards;
3 4 2 3 5 4 2 5 3 4 1 4
;
run;


proc sql noprint;
    SELECT count(*) INTO :nmales
    FROM persons
    WHERE male=1;
quit;

data want;
    set results;
    array a_names(&nmales.) $ _TEMPORARY_;

    if _N_=1 then do i=1 by 1 until (eof);
        set persons (where=(male=1)) end=eof;
        a_names(i)=name;
    end;

    do i=1 to dim(a_names);
        total+vvaluex(a_names(i));
    end;

    drop i name male;
run;
Rhys
Obsidian | Level 7

put the where after the from

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 1177 views
  • 1 like
  • 4 in conversation