How to supply argument to delimiter in combine columns ()?
The following does not workNames Default To Here (1);
// Combine columns
dm = ".0";
Data Table( "myTable" ) << Combine Columns(
columns( :Col1, :Col2 ),
Column Name( "ID" ),
Delimiter(dm)
//Delimiter ("dm")
);
But writing the argument to Delimiter directly as Delimiter(".0")
works. How to supply argument to the delimiter from outside?