cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Wish List

We want to hear your ideas for improving JMP software.

  1. Search: Please search for an existing idea first before submitting a new idea.
  2. Submit: Post your new idea using the Suggest an Idea button. Please submit one actionable idea per post rather than a single post with multiple ideas.
  3. Kudo & Comment Kudo ideas you like, and comment to add to an idea.
  4. Subscribe: Follow the status of ideas you like. Refer to status definitions to understand where an idea is in its lifecycle. (You are automatically subscribed to ideas you've submitted or commented on.)

We consider several factors when looking for what ideas to add to JMP. This includes what will have the greatest benefit to our customers based on scope, needs and current resources. Product ideas help us decide what features to work on next. Additionally, we often look to ideas for inspiration on how to add value to developments already in our pipeline or enhancements to new or existing features.

Choose Language Hide Translation Bar

Add "treat consecutive delimiters as one" to data import

Some data files we use that are generated by some equipment unfortunately saves the output using "tab" to make the formatting look nice when printed. Unfortunately, sometimes there's one tab, and sometimes there's two tabs, depending on the width of the contents of the field.

For example:

Row     Value1      Value2

1       1.2         6.2

2       12.5234213  1.2

3       0.1         2.2342

And in this contrived example, those spaces are defined with tabs. I'll type "\t" for each tab...

Row\tValue1\t\tValue2

1\t1.2\t\t6.2

2\t12.5234213\t1.2

3\t0.1\t\t2.2342

 

So JMP has no way to import that data directly with each value in the correct column. As a fix, I used Multiple File Import, imported Row Per Line strings, and used column formulas such as this:

cdt << New Column( "Gas1", Numeric, Formula( Word( 2, Regex( :Text, "[\s]", " ", GLOBALREPLACE ) ) ) );

But Excel has a "treat consecutive delimiters as one" in their import Wizard. If we agree that JMP is better than Excel, JMP should have this option, too!

2 Comments
Status changed to: Acknowledged
 
hogi
Level XI

Another workaround:
Instead of Regex, use Text to Columns.
Different than MFI this function - which vice-versa is not always what the user wants

Text To Columns: handle missing data correctly