Renaming Data Table using a previous table name
I know I can rename a table using dt << SetName("FirstTablename"); But say I'd like to rename a 2nd data table that concatenates the name of the 1st data table so that it is something likedt2 << SetName( Nameof1stTable || " 2"); Does anyone know how I could just name a 2nd table with an appended character? The reason I want to do this is that usually I modify multiple tables in JSL with splits and...