Open JMP file Using Variable and Wildcard
After prompting the user to select a text file, the file is opened and a variable is created based on the site name contained in this text data filename as follows
dt.rawdata = Open ( Pick File( ...... ));// Create string that is filenamedtname = dt.rawdata << Get Name;// Create variable called siteid that removes just the site name from the filenameIf( Word( 1, dtname, "_" ) == "UC", site...