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



How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / raja

%put <text>;

use the above statement any where in macro programe to
write some information on to the log. With in the text you
can also call/reference the macto variables.

Is This Answer Correct ?    4 Yes 1 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

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

How would you code a macro statement to produce information on the SAS log? This statement can be ..

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

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / aravind rangaraj

%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

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / mamtha

MPRINT MLOGIC & SYMBOLGEN ARE USED IN THE OPTIONS STATEMENT
TO PRODUCE INFORMN.....

Is This Answer Correct ?    2 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

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

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / radhiv kumar sure

BY USING %PUT WE CAN PRODUCE THE CODE IN SAS LOG

Is This Answer Correct ?    0 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / dupe bassey

OPTIONS MPRINT MLOGIC MERROR SYMBOLGEN;

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SAS Interview Questions

how does sas handle missing values in a merge? : Sas programming

0 Answers  


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

3 Answers  


What is the difference between one to one merge and match merge? Give an example.

0 Answers  


How would you invoke a macro? : sas-macro

0 Answers  


What is SAS Information Map Studio and its purpose ?

2 Answers   SAS, TCS,






How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?

0 Answers  


explain the use of % includes a statement in sas? : Sas-administrator

0 Answers  


What are common programming errors committed in sas

0 Answers  


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?

5 Answers  


what is change analysis in sas di ? : Sas-di

0 Answers  


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

7 Answers  


explain about data integrator metadata reports? : Sas-di

0 Answers  


Categories