BookmarkSubscribeRSS Feed
sahitrajyadav
Calcite | Level 5

hello sir, when am using else if statement along with length function, am getting two equal to symbols(==) and text cursor jumping back.

 

data dt1;

x='ukunk';

if length(x)=5 then y = 'correct';

else if length(x)= 3 then y ='incorrect';

run;

 

and when am using if statement along with substr function am getting two letters (kk,uu,dd) and text cursor jumping back.

 

data dt2;

x='ukunk';

if substr(x,1,5)='ukunk' then y = 'correct';

run;

 

am getting issues in these to programs, please correct me.

 

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

> text cursor jumping back

You mean that the cursor in the SAS editor is moving on its own?

What editor is that: SAS desktop (DMS)? EG? SAS Studio?

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
  • 1 reply
  • 371 views
  • 0 likes
  • 2 in conversation