cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
drdrf
Level III

Excel from journal

Is there a way to link to an excel file from journal so that the link opens the excel file?  I am probably missing something very obvious, but every way I have tried results in JMP trying to import the excel spreadsheet into a new JMP data table.

 

I am using JMP 17.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Excel from journal

One option is to use Web() command for that

Names Default To Here(1);

nw = New Window("",
	Button Box("Open",
		Web("$SAMPLE_IMPORT_DATA/Team Results.xlsx")
	)
);

nw << journal;
nw << close window;

Run Program() is a good other option but it is more complicated to use

-Jarmo

View solution in original post

3 REPLIES 3
txnelson
Super User

Re: Excel from journal

Do you want to open the Excel file as a JMP data table, or do you want to open the Excel file in Excel?

Jim
drdrf
Level III

Re: Excel from journal

I want to open the file in Excel

jthi
Super User

Re: Excel from journal

One option is to use Web() command for that

Names Default To Here(1);

nw = New Window("",
	Button Box("Open",
		Web("$SAMPLE_IMPORT_DATA/Team Results.xlsx")
	)
);

nw << journal;
nw << close window;

Run Program() is a good other option but it is more complicated to use

-Jarmo

Recommended Articles