Hi Community, I have a data set “data.txt” (“txt” is the extension name) It has 37 variables and 1.3 million customers (records) I just opened the data set, and it automatically opened in notepad. The "Heading record" is found as a continuous string like below. "Bank number","Start date","Branch number","Person name", “Balance", and so on……. (note that names of some variables are having spaces) Each record of descriptor portion is also found as a continuous string as follows, seperated by commas. 77,22/2/2011 0:00:00,6,"JOHN JOSEPH", and so on…… First of all, I need to run some descriptive statistics in SAS and get some feel about the data set. I have given the following command to read the data set in SAS. data test; infile 'H:\Model_Building\data.txt' firstobs=2 dlm='09'x dsd; input Bank number Current date Branch number Short name Balance ........ ; Run; My question Is this approach correct? Name of a single variable has two names (how to handle this?) Help is highly appreciated. Thank you Mirisage
... View more