cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.

Discussions

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

Execute "paste with column names" in JSL

Hi

i am looking for a way to execute the "paste with column names" (CTRL+Shift+V) command from a JSL script. I am importing formatted data from an excel table and I don't want to save as .csv or .xls  and then use the open() command.

Have any of you guys been able to do this?

Thanks

PB

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Execute "paste with column names" in JSL

Assuming the data is already in the OS clip board, this code should paste it with column names into a new, empty data table.

dt=new table("Paste here");

main menu("Paste With Column Names");

Recommended Articles