How would you code a macro statement to produce information
on the SAS log? This statement can be coded anywhere.
Answers were Sorted based on User's Feedback
Answer / name is no need
why some people are giving the answer
Mprint,Mlogic,........,i think these are used when we want
to debug the macros.if we use the above options the macro
processor resolves the macros and results the Base SAS code
in log window ,but here the questions is How would you code
a macro statement to produce information on the SAS log.
So persons who are giving the answers could you please read
the questions properly and then give the answers if you
don't know the answer ,don't give any answer,this is not a
game.why some useless morons are giving these type of
stupid answers.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / name is no need
Hello "Name Is No Need" You are a manner less fellow .
Don't irritate to others ,if you know the answers share with
others and try to suggest them, who are giving the wrong
answers. ok Take care and all the best to Ur carer .
bye
Is This Answer Correct ? | 3 Yes | 0 No |
%put stament is used to print the information about macro
variable references and this statemet is
global.mprint,mlogic symbolgen are system options and used
to print the information in the log to debug the macros
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mamtha
MPRINT MLOGIC & SYMBOLGEN ARE USED IN THE OPTIONS STATEMENT
TO PRODUCE INFORMN.....
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kiranb kumar yarlagadda
How would you code a macro statement to produce information
on the SAS log? This statement can be coded anywhere.
inorder to see the results(output) we need to navigate the
log window when we use %PUT statement .
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / radhiv kumar sure
BY USING %PUT WE CAN PRODUCE THE CODE IN SAS LOG
Is This Answer Correct ? | 0 Yes | 0 No |
how does sas handle missing values in a merge? : Sas programming
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks
What is the difference between one to one merge and match merge? Give an example.
How would you invoke a macro? : sas-macro
What is SAS Information Map Studio and its purpose ?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
explain the use of % includes a statement in sas? : Sas-administrator
What are common programming errors committed in sas
There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?
what is change analysis in sas di ? : Sas-di
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
explain about data integrator metadata reports? : Sas-di