BookmarkSubscribeRSS Feed
pawandh
Fluorite | Level 6

why can't input comes before infile ?

 

data a;

infile "path";

input a b ;

run;

 

And how PDV works,like first it read the values from infile and then it assigns the variable in PDV.

 

 

 

3 REPLIES 3
LinusH
Tourmaline | Level 20
Because there is a dependency - input needs a source to input from. This us syntax, just accept it. The why's can discuss with the developers in Cary...

And yeah, something like that.
Data never sleeps
Kurt_Bremser
Super User

Since the infile can dynamically change during data step execution (ie by using the filevar= option), the position of the infile statement within the code is important.

Tom
Super User Tom
Super User

The order of the INFILE and INPUT statements matter because they are executale statements. You can have multiples of each in the same data step.  You could have an INPUT statement before any INFILE statement, but then it would expect there to be a CARDS (datalines) statement for it to find the data to read. 

 

What variables are defined in your data step are determined when the step is compiled.  The order of the variable is determined by the order that the complier sees them.  When the INPUT statement runs it will place the values it reads into the locations for those variables.

 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1456 views
  • 3 likes
  • 4 in conversation