Set File List with a variable during Multiple File Import
I'm using JMP 18.0.1 and I noticed the new option for Multiple File Import that allows the user to provide a list files (or directories) to import. I can successfully use it in a script like so: Multiple File Import(
<<Set Use File List( 1 ),
<<Set File List( { "C:\file1.csv", "C:\file2.csv", "C:\file3.csv" } ),
<<Set Import Mode( "CSVData" ),
<<Set Stack Mode( "Stack Similar" ),
) << Import
...