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

When I tried to write a loop over some arguments countw gave me the answer that "where Gruppe=1!where Gruppe=2" consists of four words when using "!" as delimiter. Shouldn't it be 2? 

 

I used countw as shown in the log below.

 

61 %macro test;

62
63 %let a=%sysfunc(countw(where Gruppe=1!where Gruppe=2),!);
64 %put "&a.";
65 %mend;
66
67 %test;
"4"
1 ACCEPTED SOLUTION

Accepted Solutions
jklaverstijn
Rhodochrosite | Level 12

Looking at parentheses the ! is interpreted as a parameter for %sysfunc and not of countw. You're better of with

 

%sysfunc(countw(&Beds.,!));

Hope this helps,

- Jan

View solution in original post

2 REPLIES 2
jklaverstijn
Rhodochrosite | Level 12

Looking at parentheses the ! is interpreted as a parameter for %sysfunc and not of countw. You're better of with

 

%sysfunc(countw(&Beds.,!));

Hope this helps,

- Jan

WarrenKuhfeld
Ammonite | Level 13

Your parentheses are in the wrong place.   This works.  I deleted other extra characters that you do not need.

%macro test;
%let a=%sysfunc(countw(where Gruppe=1!where Gruppe=2,!));
%put &a;
%mend;
%test

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 679 views
  • 2 likes
  • 3 in conversation