Answers

Question and Answer:

  Home  SAS

⟩ In PROC PRINT, can you print only variables that begin with the letter “A”?

Use the idea of variable list (varlist) wildcard :

e.g.,

proc print data=xxx ;

var A: ;

run ;

This will list all variables start with letter A.

 140 views

More Questions for you: