キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
  • 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.
言語を選択 翻訳バーを非表示
BSwid
Level IV

JMP Excel File Import - Can I ignore columns in the Excel file?

Either in the import wizard or in the import script (data source script) can I write script that ignores certain columns so that it is not imported from the source file to the JMP file?

1 件の受理された解決策

受理された解決策
txnelson
Super User

Re: JMP Excel File Import - Can I ignore columns in the Excel file?

This is all found in the Scripting Index....description and examples

     Help==>Scripting Index........search on "delete columns"

delete columns.PNG

Jim

元の投稿で解決策を見る

3件の返信3
msharp
Super User (Alumni)

Re: JMP Excel File Import - Can I ignore columns in the Excel file?

No, and you wouldn't want to.  It may be unintuitive but it will be faster to just import the entire .csv file and then delete the extra columns via dt << Delect Columns(ListOfColumns).  CSV importers are heavily optimized for reading the data, they aren't built for data clean up which would come at the cost of too much overhead.

BSwid
Level IV

Re: JMP Excel File Import - Can I ignore columns in the Excel file?

Thank you.  So in summary, import all, then add to the script the delete columns syntax.  Could you please point me ot the syntax in JSL to delete multiple columns?  

txnelson
Super User

Re: JMP Excel File Import - Can I ignore columns in the Excel file?

This is all found in the Scripting Index....description and examples

     Help==>Scripting Index........search on "delete columns"

delete columns.PNG

Jim

おすすめの記事