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.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • How to loop when querying date?

    Hi allI am trying to query the database using JMP. In my query, I manually change the dateNow value from day 1 to 30 then run the script. But I needed to create another one that would loop all through the days. How can I create a loop that queries every date starting from July 2023 to January 2024? dateNow = "01/11/2024"; dt = Open Database( "DSN=databasename;UID=root;PWD=admin;APP=JMP;DATABASE=d...

    UserID16644 UserID16644
    Discussions |
    Feb 12, 2024 10:58 PM
    1586 views | 2 replies
  • Concatenate a string to an integer.

    Hi. I'm trying to create new columns with the same name, but different extension. For example, I'm trying to create column 1 & column 2 &column 3... etc.  Here is what I have:  lista = list(1 , 2, 3 , 4);  for(i1=1, i1<N Items ( lista)+1, i1++,  dt_limit << new column (    insert( "condition", char ( lista(i1) )  )    ); );  it doesn't seem to work, however. It either returns an error or retur...

    RA899 RA899
    Discussions |
    Feb 12, 2024 6:00 PM
    1572 views | 2 replies
  • Selecting duplicated row entries, save their index, and then create a new list that doesn't contain the duplicated rows.

    Hi. This is a follow up to the question in this link: Solved: get values from select where - JMP User Community. At the ends of this discussion( in the link provided), there a way a jsl that select certain rows  and print them using show() function. In another post( I lost the link to it), there was a method to select duplicated rows using the Select Duplicated Row() function and then delete them....

    RA899 RA899
    Discussions |
    Feb 12, 2024 11:07 AM
    3700 views | 9 replies
  • Problem with a column formula to assign production phases

    Hi All,   I'm trying to write a column formula that will look at the difference in date between two rows and if >= than a certain value (in this case 4 days), then the column should decrement the phase value. If the date difference is <4 then it should keep the previous phase value. I've defined two local variables in the formula: phase and MinDaysbreak, which is the minimum days between phases (4...

    SDF1 SDF1
    Discussions |
    Feb 12, 2024 7:48 AM
    1438 views | 2 replies
  • Scheduled job failed

    Hi, I'm trying to run daily scheduled job, but keep getting failing error "Process is terminated due to StackOverflowException".What might be the reason for this?

    shaiv90 shaiv90
    Discussions |
    Feb 11, 2024 11:09 PM
    832 views | 0 replies

Latest Discussions

  • Scheduled job failed

    Hi, I'm trying to run daily scheduled job, but keep getting failing error "Process is terminated due to StackOverflowException".What might be the reason for this?

    shaiv90 shaiv90
    Discussions |
    Feb 11, 2024 11:09 PM
    832 views | 0 replies
  • I'm Confused About Variables

    I'm having a conceptual problem figuring out how local variables work. I'll simplify the issue to focus in on what is confusing to me. I create a local variable, say t0, with a value of 5. Then I write a column formula to increment this value by 1... either t0=t0+1 or t0+=1 (it doesn't seem to matter), the result that I expected was that when JMP evaluated each cell in the column, it would increme...

    scott1588 scott1588
    Discussions |
    Feb 10, 2024 11:21 AM
    3519 views | 4 replies
  • remove string that contains number from text

    Hi,
     is that a way to remove any string that contain numbers using JSL? Example:
    I ate 4 apples and 2 bananas
    the model number is 0998GBELS03/45 is the ratio to check Targeted Output:I ate apples and bananas
    the model number is  is the ratio to check 

    dadawasozo dadawasozo
    Discussions |
    Feb 10, 2024 8:52 AM
    2129 views | 3 replies
  • PickFile(), Projects and Network Drives

    Did you notice that PickFile looks different when it's opened from within a project? More than that - when Pick File is opened from a project, with mydir pointing to a network drive with thousands of files, Jmp will freeze for dozens of seconds:mydir= "\\computername\directory"; Pickfile("select a file" , mydir) So, if you work in a project, to prevent Jmp from freezing, please be sure that your i...

    hogi hogi
    Discussions |
    Feb 9, 2024 3:07 PM
    886 views | 0 replies
  • Add Reference Lines to multiple Variability Charts in a Column Group

    I have many columns with spec limits saved to column properties. I am trying to add reference lines to multiple variability charts in a column group. My problem is I cant seem to add these lines without looping through and creating over 400 instances of a variability chart and adding them manually. This causes way to much memory to be used and slows down if not crashes JMP. The first reference lin...

    JMewborn JMewborn
    Discussions |
    Feb 8, 2024 7:43 AM
    1238 views | 1 replies

Latest Discussions

  • Scheduled job failed

    Hi, I'm trying to run daily scheduled job, but keep getting failing error "Process is terminated due to StackOverflowException".What might be the reason for this?

    shaiv90 shaiv90
    Discussions |
    Feb 11, 2024 11:09 PM
    832 views | 0 replies
  • PickFile(), Projects and Network Drives

    Did you notice that PickFile looks different when it's opened from within a project? More than that - when Pick File is opened from a project, with mydir pointing to a network drive with thousands of files, Jmp will freeze for dozens of seconds:mydir= "\\computername\directory"; Pickfile("select a file" , mydir) So, if you work in a project, to prevent Jmp from freezing, please be sure that your i...

    hogi hogi
    Discussions |
    Feb 9, 2024 3:07 PM
    886 views | 0 replies
  • How might I include a line break (or a second line) in the print header of a PDF generated from a Journal window?

     w = New Window("window", <<Journal, hlb = hlistbox() ); w << Set Print Headers( "lineone \!n linetwo", "", "Page &pn; of &pc;" ); w << SavePDF ( "C:\Users\blahblah.pdf");The above script should include a line break in the "left header" so that it has two lines. Instead the resulting PDF just has a non-printing box character between the two words, like this ... and if i copy that text into this wi...

    mann mann
    Discussions |
    Jan 31, 2024 6:25 AM
    1092 views | 0 replies
  • GraphBuilder Legend hook

    There are many useful instances of being able to have a hook onto the selection state change of a legend for a chart / graph.  With the non graph-builder method of generating charts' and graphs' legends (using Row Legend()), this was quite simple as the display element was simply a Table Box() that can receive a Set Row Change Function() message.  The same cannot be done (to my knowledge) with Gra...

    ErraticAttack ErraticAttack
    Discussions |
    Jan 17, 2024 6:41 PM
    747 views | 0 replies
  • Copy Columns - selected rows

    Copy Columns from the right-click context menu of a column header is very useful. Just copy the column(s)  - with all the settings ... and paste it into a JSL script - or another table. There is a hidden feature:
    When rows are selected, the values of the selected rows are used as arguments of the Set Values() command and will populate the cells of the new column. So, when you select all rows before...

    hogi hogi
    Discussions |
    Jan 3, 2024 1:27 PM
    1228 views | 0 replies
view all discussions