Is there a way to read in a csv data set that has "." in some cells and replace those with "*"? The things inside the quote marks, e.g., period and star. This is the import statement, I'm sure I can't do it here, probably in a data step.
proc import datafile = "\\folder\data.csv" out=workingdata dbms=csv replace; getnames=yes; run;
The data set came in with "." I use * to represent suppressed data, and have a footnote explaining the symbol.
If you know how to do this, that would be very helpful.
FYI, I do NOT was to talk about why I'm doing this, why I should not do this, why doing this is never the right thing to do. Those points are not at all helpful.
... View more