Can you execute a macro within a macro? Describe. : sas-macro
How are numeric and character missing values represented internally?
DATA ABC; INPUT TDATE DATE9. AVG; CARDS; 18APR2008 150.00 19APR2008 167.00 20APR2008 123.00 21APR2008 145.00 ; RUN HOW CAN I FIND THE DIFFERENCE BETWEEN AVG OF 18APR2008 ANF 21APR2008?? IF ANY ONE GETS IT PLS TRY TO POST IT.
8 Answers Verinon Technology Solutions,
Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation
Did you used proc lifetest? when?
2 Answers Accenture, Parexel, Quintiles,
name the scheduler for scheduling job and explain the scheduler? : Sas-di
tell me about use of arrays in sas
WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
how do you read binary data in sas?
How to limit decimal places for variable using proc means?
proc means? proc sort? proc append? proc freq? proc print? proc content?
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;