Import of 3 sheets from the same Excel file
Hello all,I would like to import 3 sheets from the same Excel file in JMP.My Excel fil is encrypted with a password.If I import the 3 sheets (AAA, BBB, and CCC) with the following code (written 3 times), I need to write 3 times the password:Open(
"/P:/XXX/TEMPLATE.xlsx",
Worksheets( "AAA" ),
Use for all sheets( 1 ),
Concatenate Worksheets( 0 ),
Create Concatenation Co
...