Which procedure we use if statement? As per my knowledge we don't use if statement in procedures? Why we don't use if statement in procedure?
Simple. Procedures are pre-fabricated modules that accept a limited set of parameters, the data step is undetermined and compiled.
The very brief picture: In a DATA step, IF deletes observations that have already been read in. The deletion can be based on original values in the observation, or can be based on values calculated along the way by the DATA step.
However, the WHERE statement subsets observations before they get read into the DATA step. By subsetting earlier, the WHERE statement (in many cases) is faster than the IF statement. In addition, the WHERE statement is available for procedures as well as the DATA step. Since procedures don't calculate new variables, and procedures have the WHERE statement available, there is no need for an IF statement there.
Actually, a number of procedures use IF statements. They use a system called CMP that provides programming capabilities. Here is one example, NLIN. https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_nlin_sect01... I know some of the OR procs have complicated syntax too, so they probably do. IML of course does. Look at the documentation, it will tell you. There might be a list of CMP procs somewhere. I could more easily check if I were in my office. Most procedures do not use IF statements.
To subset data many procedure allow for a WHERE statement (which is more like SQL syntax).
When working with SAS tables you can also use a WHERE statement as data set option to subset records:
Proc <some proc> data=source(where=(<condition>)); ...
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.