I want to write SAS code that can read in csv file every time it is read, number of columns maybe different. In addition, I need to use different variables to look up different values. let's say first time I have 3 columns, it's a look up table, use var1 - var2 to look up RF01 next time when I read in the file, it has 5 columns, use var1 - var3 to look up RF01 and RF02 So, given this situation, the column number is not fixed, and also look up column value is different too. Any ideas?
... View more