BookmarkSubscribeRSS Feed
SASdevAnneMarie
Barite | Level 11

Hello Experts,

 

Do you know please ho to replace all "."  in all columns by the ",".

I run this code, but I have no columns in my data result :

 

array Var _character_;
            do over Var;
            Var=tranwrd(Var,'.',',');
            end;

 Thank you for your help !

3 REPLIES 3
andreas_lds
Jade | Level 19

Please post the complete log of the step you used.

Patrick
Opal | Level 21

The code snippet you've posted is syntactically correct and should work ...as long as you run it AFTER the location in the data step where the character variables of interest get created during the compilation phase (i.e. after a set, merge, attrib etc. statement).

 

Tom
Super User Tom
Super User

@SASdevAnneMarie wrote:

Hello Experts,

 

Do you know please ho to replace all "."  in all columns by the ",".

I run this code, but I have no columns in my data result :

 

array Var _character_;
            do over Var;
            Var=tranwrd(Var,'.',',');
            end;

 Thank you for your help !


That will not create zero variables.  It won't create ANYTHING at all. 

 

You need to include that code in a DATA step.

data want;
  set have;
  array Var _character_;
  do over Var;
    Var=tranwrd(Var,'.',',');
  end;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 3 replies
  • 324 views
  • 0 likes
  • 4 in conversation