I have a text file loaded in SAS Studio.The file contains following data: Apple macbook 1499 Lenovo yoga 999 msft surface 1099 dell xps1299 I used the following SAS codes to read the and print the data: `Data C_input; infile 'Sample1.txt'; input Brand $ 1-6 Make $ 8-14 Year 16-22; Run; proc print data=C_input; Title 'Computer Sales'; Run; The Output I get is: Computer Sales Obs Brand Make Year 1 Apple macb . 2 Lenovo yoga . ================================================== Why is it only reading two observations?And why is it not reading the dates?
... View more