I Created dataset as
data sushil.tsk1;
input subjid$ InvestigatorName$5-25;
datalines;
1001 Ramachandiran
1002 Umabadi
1003 Seshadi
1004 Mandadi
1005 Kodumudivenu
1006 Vadivelu
1007 SevadiKesavamoorhty
1008 Semmadirajan
run;
I wrote the code, to find the position of "di" in Investigator variable and replace the "di" with Change but its not working Could any one help me.
data sushil.task1;
set sushil.tsk1;
Inv_Pos = index(InvestigatorName,'id');
Inv_Change = Tranwrd(InvestigatorName,'id','CHANGE');
run;
Using this Code Required Output is not coming Could any one help me
Seems like a typo, instead of di you have specified id in the Tranwrd call.
yes thank you i got that
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.
Ready to level-up your skills? Choose your own adventure.