Evening all.
I have a data file called "hartland". There are 135 records, but I noticed that 33 of them have a "." in my PERMNO column. How do I remove these items and get my file down to 102 records?
data filtered;
set temp.hartland;
if not index(PERMNO ,'.');
run;
if not index(PERMNO ,'.');
data filtered;
set temp.hartland;
if not index(PERMNO ,'.');
run;
Post your sample data plz
The last column has the "." in it. This is what I want to remove.
I put in this code:
data filtered;
set temp.hartland;
if not index(PERMNO ,'.');
run;
| 1 | Transcept Pharmaceuticals Inc. | TSPT | Novacea Inc. | Marketwire | 01SEP2008 | H | 2589 | 2008 | 2.6232908319 | . |
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 save with the early bird rate—just $795!
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.