Using SAS studio, my system is windows 10, 64 bit raw txt file: Ranch,1250,2,1,sheppard Avenue,"64,000" Split,1190,1,1,Rand Street,"65,850" Condo,1400,2,1.5,Market Street,"80,050" TwoStory,1810,4 3,Garris Street,"107,250" Ranch,1500,3,3,Kemble Avenue,"86,650" Split,1615,4,3,West Drive,"94,450" Split,1305,3,1.5,Graham Avenue,"73,650" My code to import raw txt file: data orion.locationrawfile; infile "/folders/myfolders/pg2/location.txt" dlm=',' dsd ; length price $15; length Address $20; input Style $ Zip Bedroom $ Baths $ Address Price $ ; proc print data = orion.locationrawfile noobs; var Style Zip Bedroom Baths Address Price; run; Output error: First three observations has no $ dollar sign with price variable. 4th observation has bedroom, bath as dot , price comes in the address field and Ranch is listed as price. 6th and 7th observation have no dollar signs, 5th observation is missing. Attaching output as pdf file.
... View more