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.

 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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