Hi, I am trying to convert character fields to numeric. Is there a better way than a regular Input statement to convert multiple variables to numeric from character. I am working with about 300 fields which need to be converted to the same BEST32. format from character. Same data formats too. Please help. This is what I was doing so far: DATA WORK.SAMPLE; SET WORK.DETAILS; FORMAT PRICE1 RENT1 EXPENSE1 BEST32.; PRICE1 = INPUT(PRICE, BEST32.); RENT1 = INPUT(RENT, BEST32.); EXPENSE1 = INPUT(EXPENSE, BEST32.); RUN; Thanks & Regards, Akber.
... View more