Hi,
Is it possible to open an Excel file from JMP where there is whitespace in the filename or path?
Code from this post works where there is no whitespace:
Solved: Open Excel File in Excel (Windows standard application) by JSL - JMP User Community
excel_file_to_open = Concat( "/X:/folder location/",excel_file_new_name);
RP = Run Program(
Executable( "C:\Program Files\Microsoft Office\root\Office16\excel.exe" ),
Options( {"/r",SUBSTR(excel_file_to_open,2)} )
);
Unfortunately I can't use web() to open the file as this seems to be clashing with another application and causing an error.
Any help appreciated.