I am not getting any errors when running the following program, but when I try to assign my temp data sets, it keeps reading 0 observations and 4 variables, which is incorrect because my imported file has 4000 observations. I am new to SAS and struggling, can anyone assist me? Here is my SAS program: options nodate nonumber; proc import out = Project3 datafile = "C:\Users\A\Downloads\Project3.xlsx" dbms=xlsx replace; getnames=yes; run; %macro INST_NUM (inst1, inst2, inst3, inst4, inst5); data temp; set Project3; if INST_NUM = '&inst1'; data temp1; set temp; if INST_NUM lt '5 AML'; x = ranuni (0); output; proc sort data = temp1; by x; run; data one; set temp1 (obs =5); run; data temp2; set temp; if INST_NUM lt '10 CML'; x = ranuni (0); output; proc sort data = temp2; by x; run; data two; set temp2 (obs=10); run; data temp3; set temp; if INST_NUM lt '20 ALL'; x = ranuni (0); output; proc sort data = temp3; by x; run; data three; set temp3 (obs=20); run; data temp4; set temp; if INST_NUM lt '5 CLL'; x = ranuni (0); output; proc sort data = temp4; by x; run; data four; set temp4 (obs=5); run; data &inst2; set one two three four; run; data &inst3; set one two three four; run; data &inst4; set one two three four; run; data &inst5; set one two three four; run; %mend INST_NUM; %INST_NUM (1, new1_from_macro); %INST_NUM (2, new2_from_macro); %INST_NUM (3, new3_from_macro); %INST_NUM (4, new4_from_macro); %INST_NUM (5, new5_from_macro); data newfrom_macro; set new1_from_macro new2_from_macro new3_from_macro new4_from_macro new5_from_macro; run; proc print data = newfrom_macro; title 'Tabulation of selected records from MACRO'; run; AND here is my log info: 1282 options nodate nonumber; 1283 proc import out = Project3 1284 datafile = "C:\Users\A\Downloads\Project3.xlsx" 1285 dbms=xlsx replace; 1286 getnames=yes; 1287 run; NOTE: The import data set has 4000 observations and 3 variables. NOTE: WORK.PROJECT3 data set was successfully created. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.14 seconds cpu time 0.14 seconds 1288 %macro INST_NUM (inst1, inst2, inst3, inst4, inst5); 1289 data temp; 1290 set Project3; 1291 if INST_NUM = '&inst1'; 1292 data temp1; 1293 set temp; 1294 if INST_NUM lt '5 AML'; 1295 x = ranuni (0); 1296 output; 1297 proc sort data = temp1; 1298 by x; 1299 run; 1300 data one; 1301 set temp1 (obs =5); 1302 1303 data temp2; 1304 set temp; 1305 if INST_NUM lt '10 CML'; 1306 x = ranuni (0); 1307 output; 1308 proc sort data = temp2; 1309 by x; 1310 run; 1311 data two; 1312 set temp2 (obs=10); 1313 run; 1314 data temp3; 1315 set temp; 1316 if INST_NUM lt '20 ALL'; 1317 x = ranuni (0); 1318 output; 1319 proc sort data = temp3; 1320 by x; 1321 run; 1322 data three; 1323 set temp3 (obs=20); 1324 run; 1325 data temp4; 1326 set temp; 1327 if INST_NUM lt '5 CLL'; 1328 x = ranuni (0); 1329 output; 1330 proc sort data = temp4; 1331 by x; 1332 run; 1333 data four; 1334 set temp4 (obs=5); 1335 run; 1336 data &inst2; 1337 set one two three four; 1338 run; 1339 data &inst3; 1340 set one two three four; 1341 run; 1342 data &inst4; 1343 set one two three four; 1344 run; 1345 data &inst5; 1346 set one two three four; 1347 run; 1348 1349 %mend INST_NUM; 1350 %INST_NUM (1, new1_from_macro); NOTE: There were 4000 observations read from the data set WORK.PROJECT3. NOTE: The data set WORK.TEMP has 0 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP1. NOTE: The data set WORK.ONE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP2. NOTE: The data set WORK.TWO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP3. NOTE: The data set WORK.THREE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP4. NOTE: The data set WORK.FOUR has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.NEW1_FROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA241 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA242 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA243 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 1351 %INST_NUM (2, new2_from_macro); NOTE: There were 4000 observations read from the data set WORK.PROJECT3. NOTE: The data set WORK.TEMP has 0 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP1. NOTE: The data set WORK.ONE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP2. NOTE: The data set WORK.TWO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP3. NOTE: The data set WORK.THREE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP4. NOTE: The data set WORK.FOUR has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.NEW2_FROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA244 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA245 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA246 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 1352 %INST_NUM (3, new3_from_macro); NOTE: There were 4000 observations read from the data set WORK.PROJECT3. NOTE: The data set WORK.TEMP has 0 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP1. NOTE: The data set WORK.ONE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP2. NOTE: The data set WORK.TWO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP3. NOTE: The data set WORK.THREE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP4. NOTE: The data set WORK.FOUR has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.NEW3_FROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA247 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA248 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA249 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds 1353 %INST_NUM (4, new4_from_macro); NOTE: There were 4000 observations read from the data set WORK.PROJECT3. NOTE: The data set WORK.TEMP has 0 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP1. NOTE: The data set WORK.ONE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP2. NOTE: The data set WORK.TWO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP3. NOTE: The data set WORK.THREE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP4. NOTE: The data set WORK.FOUR has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.NEW4_FROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA250 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA251 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA252 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.03 seconds 1354 %INST_NUM (5, new5_from_macro); NOTE: There were 4000 observations read from the data set WORK.PROJECT3. NOTE: The data set WORK.TEMP has 0 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP1 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP1. NOTE: The data set WORK.ONE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.03 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP2 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP2. NOTE: The data set WORK.TWO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP3 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.TEMP3. NOTE: The data set WORK.THREE has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is empty. NOTE: The data set WORK.TEMP4 has 0 observations and 4 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.TEMP4. NOTE: The data set WORK.FOUR has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.NEW5_FROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA253 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA254 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 0 observations read from the data set WORK.ONE. NOTE: There were 0 observations read from the data set WORK.TWO. NOTE: There were 0 observations read from the data set WORK.THREE. NOTE: There were 0 observations read from the data set WORK.FOUR. NOTE: The data set WORK.DATA255 has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 1355 1356 data newfrom_macro; 1357 set new1_from_macro new2_from_macro new3_from_macro new4_from_macro new5_from_macro; 1358 run; NOTE: There were 0 observations read from the data set WORK.NEW1_FROM_MACRO. NOTE: There were 0 observations read from the data set WORK.NEW2_FROM_MACRO. NOTE: There were 0 observations read from the data set WORK.NEW3_FROM_MACRO. NOTE: There were 0 observations read from the data set WORK.NEW4_FROM_MACRO. NOTE: There were 0 observations read from the data set WORK.NEW5_FROM_MACRO. NOTE: The data set WORK.NEWFROM_MACRO has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds 1359 proc print data = newfrom_macro; 1360 title 'Tabulation of selected records from MACRO'; 1361 run; NOTE: No observations in data set WORK.NEWFROM_MACRO. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds
... View more