I currently have a sas data set where each observation has 3 attributes. However, the text input has 5 per row with multiple rows. How do I tell sas to read the first 3 values in the row as an entry, then the next three, etc before moving to the next line? Basically, if one input row looks like this: 4 4 10 2 2 10 5 5 10 6 6 10 9 9 10 I want it to end up like this in the sas dataset: 4 4 10 2 2 10 5 5 10 6 6 10 9 9 10.
... View more