If column A always has the same number of commas (eg 2) then you can define extra temporary columns A1 A2 A3 to import the data; after the input statement you then need something like A = catx (', ', A1, A2, A3) ; which will restore the commas in a single column A. Follow with Drop A1 A2 A3 ; Otherwise this might work: Infile xxx MISSOVER [etc] ; Input @ ; _Infile_ = reverse (_Infile_) ; Input D C B A3 A2 A1 ; D = left (reverse (D)) ; C = left (reverse (C)) ; ... A1 = left (reverse (A1)) ; A = catx (', ', A1, A2, A3) ; Drop A1 A2 A3 ; Good luck. Richard
... View more