data txns; do amt = 40000, 42000, 48000; output; end; run; data process; set txns; if amt >= 50000 then do; %let title_suffix = NOTE: Large Transaction Amounts!!; large_tran_flag = 'Y'; end; run; title "Transaction Report &title_suffix"; proc print data = process: run; another one : Given the following array, how would you total the values array abc(5) ( 12 5 . 17 20);
... View more