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 !
Please post the complete log of the step you used.
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).
@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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.