cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Concatenating large number of files

Hi Guys,

I am trying to concatenate several files in a folder as below:

11 REPLIES 11
mjvincent87
Level II

Re: Concatenating large number of files

That sounds great, unfortunately I am using JMP13
Craige_Hales
Super User

Re: Concatenating large number of files

There is a JSL error, I think, here

If( Ends With( y[i], "csv" ), 
 0 // need something here, a zero is good enough
, 
  Remove From( y, i ) 
) 

the two adjacent commas need something between them. A 0 is a very tiny expression that evaluates to 0 and does nothing else. (Or switch the logic around with !EndsWith(...) where ! means NOT.)

Craige

Recommended Articles