Hello, i have similar, but not the same case. I already have the source file in xlsx format, and it includes multiple tabs.
I would like to have script that opens it as read only or its copy (copy is the best option) in excel.
My version of Win10 and in Win11 the is no option to this:
excel located at C:\Program Files\Microsoft Office\root\Office16\EXCEL.EXE
But excel alarm appeared with the meaning, that it can't find the file
Names Default To Here( 1 );
path="my_excel_file_absulute_path";
RP = Run Program(
Executable( "C:\Program Files\Microsoft Office\root\Office16\EXCEL.EXE"),
Options( {"/r",path} ),
);