Hi im new to sas. I have a file with some charecter variables and some numeric variables
now i want to load charecter variables into one datastep and numeric variables into another data step pls let me know
Thanks
Answer Posted / sureshkv
data char;
set master;
keep _character_;
run;
data num;
set master;
keep _numeric_;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you test for missing values?
what is metadata? : Sas-bi
What is the difference between input and infile statement?
what is ae onset date n what is RDS
Describe a time when you were really stuck on a problem and how you solved it?
What do the SAS log messages "numeric values have been converted to character" mean?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
Do you need to know if there are any missing values?
Name validation tools used in SAS
how do you pull data from equifax?tell me the process?
where to use sas business intelligence? : Sas-bi
Explain data_null_?
What are the default statistics for means procedure?
what are the benefits of data integration? : Sas-di
What does proc print, and proc contents are used for?