Hello, I am trying to export the table "sas_table" to a txt file. Here is my code : filename export 'txt file name'; data _NULL_; set sas_table; file export lrecl=999999; put @1 var1 $ @4 ";" @5 var2 $ @6 ";" @7 var3 $ /* . . . */ @461 ";" @462 var4 $ @494 ";" ; '0D'x ; run; filename export; When the value in the column var4 does not contain a dash, the semi-colon is at the position 494. But when the value contains a dash, the semi-colon is at the position 493. I want the semi-colon to always be at the position 494. How can I fix this problem ? Thank you in advance for your help !
... View more