Tagged Questions

2
votes
8answers
7k views

Using SAS Macro to pipe a list of filenames from a Windows directory

I am trying to amend the macro below to accept a macro parameter as the 'location' argument for a dir command. However I cannot get it to resolve correctly due to the nested quotes issue. Using ...
1
vote
2answers
60 views

dealing with missing values input file

I need to input a database with delimiter dlm="*" like this: Abatucci Pierre*Derniers rayons*1200*1*55*84*5 Abatucci Pierre*L'entrée au château*1000*1*75*91 and it works fine like this: Data ...
1
vote
2answers
526 views

SAS - Reading a File Backwards?

I need SAS to read many large log files, which are set up to have the most recent activities at the bottom. All I need is the most recent time a particular activity occurred, and I was wondering if ...
0
votes
1answer
24 views

avoid skipping lines after missing values

while input procedure with 7 variables like this Infile "C:\Users\Gila\Desktop\StatOrdinL2020\artiste1.txt" dlm="*" DSD; LENGTH Artiste $ 25 titre $30; Input Artiste $ Titre Prix Deces Hauteur ...
0
votes
1answer
310 views

SAS: What are the difference between “data files” and “raw data files”?

So, according to SAS books, you do: PROC IMPORT DATAFILE="filename" | TABLE="tablename" OUT=SAS-data-set <DBMS=identifier><REPLACE>; for data files, and you use INFILE to read raw data ...