It is numeric, The code that I wrote was, proc sql; create table Sample as select distinct b.mktDesc, a.acctno as Loan_Number , a.acctSName , a.balToday, a.commitment, a.TDR, d.SICD , a.PD, a.LGD, a.pastDue, a.user1 , c.offcrname, a.timeid, a.costCenter from everest.loans a left join everest.loanMaster b on a.acctno = b.acctno left join everest.loanOfficer c on a.offcrCde = c.offcrid left join WORK.sic d on a.acctno=d.acctno where a.timeid = "&CM." and a.restructFlg = 'Y' and a.commitment not in (0) Order by a.commitment desc, a.baltoday desc; quit; But now I have too remove loans that have costCenter that ends in 20 or 25. Help me out with this.
... View more