Hi
I would like to pull out the first 8 digits to the left of the number........the numbers marked in yellow should be discarded.....
295999335 |
295999333 |
295999336 |
295999337 |
Thanks
This variable is character or numeric ?Assuming it is character.
data have;
set have;
length want $ 8;
want=variable;
run;
This variable is character or numeric ?Assuming it is character.
data have;
set have;
length want $ 8;
want=variable;
run;
Thanks...Can you suggest a solution if the variable is Numeric....
For numeric you can try something like this
data want;
set have;
want=int(variable/10);
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.