@Kelroy22: Your problem is probably the length of the WORD variable - the DO statement initializes the variable to the length of the first value in the iteration, as you can see from this log: 1507 data _null_;
1508 do word="kon.-LK", "koncern-LK.ramme";
1509 put word;
1510 end;
1511 run;
kon.-LK
koncern If you add a LENGTH statement it should work: 1512 data _null_;
1513 length word $20;
1514 do word="kon.-LK", "koncern-LK.ramme";
1515 put word;
1516 end;
1517 run;
kon.-LK
koncern-LK.ramme
... View more