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
Rhodochrosite | Level 12

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