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?

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 556 views
  • 0 likes
  • 2 in conversation