What is the general format of function in sas? : sas-grid-administration
No Answer is Posted For this Question
Be the First to Post Answer
I need level 2 to 5 sas using companies in india
How do you debug macros?
Explain the main difference between the sas procedures and functions? : Sas-administrator
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
If you?re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
Are you involved in writing the inferential analysis plan? Tables specifications?
What are exact SAS Base contents..?N what r SAS Tools..?
Which date function advances a date, time or datetime value by a given interval?
What are Dashboard reports?And significance of these in analysis?
PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?
What is the order of evaluation of the comparison && logical && relational operators:?
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15