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
Answers were Sorted based on User's Feedback
data a;
infile "C:Documents and SettingssasadmDesktopSASMacro est1.txt" firstobs=2;
input num1 num2 num3 c1$ c2$ num4 c3$;
run;
data b;
set a;
keep _numeric_;
run;
data c;
set a;
keep _character_;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
I am having a stored process.it needs to route my report to both hthml and Xls.By default SP routes to html.I used the PRINTTO to route the html to Xls.BUt it createsthe file not but no content was written to file(0KB)?how can i do it?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
what is the use of proc contents and proc print in sas? : Sas-administrator
what is p-value
3 Answers Accenture, Quintiles, Sristek,
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
what is data governance? : Sas-di
What was the last computer book you purchased? Why?
what are the advantages of using SAS in clinical data mangement? why should not we use other software products in managing clinical data?
how to intersect the tables by using PROC MIXED?
How would you delete duplicate observations?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
why is the use of Retrive statement and give me with example?