Hi Ashwini, 1. CMISS() returns the counts of missing values within its arguments. 'pr' basically represents any variables start with 'pr'. in your case,'pr:' is the short way to address your variables from pr1 to pr15. So if cmiss() returns 15, which will mean that all of your 15 variables from pr1 to pr15 are missing. 2. you can check it by limiting the input table to a managable number, such as 100: data library.nismicathcabg4; set library.nismicathcabg4 (obs=100); ..... 3. Addtional point: When you doing test run, I suggest that you assign different names to input and output tables, so it is easier for you to track if something goes wrong. my 2 cents, Haikuo
... View more