You cannot break a value in a middle using line continuation, but... here is a trick you can use to have it broken and then concatenated together ConcatEx( "App\Import12MthsFile.dts /N ImportToAlloc_file2 ", & "/A Ver:8=BUDGCA /A Year:8=2007 /W 0 ", dtscmd ) Or ConcatEx( piece1, & piece2, & piece3, & ..., & pieceN, & result ) : I am wanting to set up a declaration similar to the one below which is very : long. Can I wrap the lines to make it more readable? : The sample below only assigns the 1st line to the variable dtscmd and ignores : the rest. : set (dtscmd , "App\Import12MthsFile.dts /N ImportToAlloc_file2 : "& : "/A Ver:8=BUDGCA /A Year:8=2007 /W 0 ") : Thanks.
|