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