Hi, I am trying to import a csv file in SAS using data step, but I want SAS read the variables as I order them e.g. Have: Var3 Var2 Var1 Cat 44 Grade 1 Dog 22 Grade 3 Bird 5542 Grade 9 Want: Var1 Var2 Var3 Grade 1 44 Cat Grade 3 22 Dog Grade 9 5542 Bird When I tried to rearrange the order of variables , SAS is importing/reading it incorrectly - here is the output from SAS - Its putting the rows under different headers like this - Notice Var1 and Var3 : Issue: Var1 Var2 Var3 Cat 44 Grade 1 Dog 22 Grade 3 Bird 5542 Grade 9 How do I fix this without sorting the vars in the csv file Thank you
... View more