What about PROC SQL? I'm sorry, but this seems like a strange question. PROC TABULATE do at least as much as PROC REPORT ? Not in my opinion, they do different things. DATA step do at least as much as PROC IMPORT? (In the context where we have a complex raw data, such as html) Datastep does more, but less automated. I typically use proc import, take the code and start from there for CSV files for example. The Data step also comprises a huge number of different topics, such as merges, arrays. In combination with the libname statement you can import a bunch of different things easily as well. SAS Enterprise guide interface do at least as much as what basic SAS interface can do? No. SAS EG does not allow DDE and its slower. If you want to learn to code use base sas. If you want to point and click use EG. At some point, you'll still need to code IMO. If you want to pick one thing to master, master the datastep and proc report. Between those two you can get everything you need. Then when you get tired of typing code you can learn the other procs such as report/tabulate/means/SQL that will save you time.
... View more