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

  • prompt the user to choose a certain date and then use it for the local data filter [using JSL]

    Hi, I have a date column in the mmddyyyy format. I need to print it out to the user to choose from and then use a local data filter to filter the selected dates in Graph builder.  The issue I'm having is that when I try to print the data to the user, it shows it as a long integer that I can't understand. Any suggestions is appreciated.  I have attached a picture of the date column from the data ta...

    RA899 RA899
    Discussions |
    Mar 4, 2024 6:36 AM
    2507 views | 4 replies
  • How to use wildcards in matching columns (Update Table)

    Hi all,How can I update a table using wildcard? I already tried to create a column with a substring formuladt << New Column( "Code Ref", Formula (Substr(:Code, 1, 4)) );TableACodeNameAgeABCD456Ann12ABCD123Roy16ABCD678Jean11 TableBCodeNameAgeABCD543John12FGR263Mike13ABCD975Rose8 After table update:CodeNameAgeABCD456Ann12ABCD123Roy16ABCD678Jean11ABCD543John12ABCD975Rose8 But I cannot use Code Ref as...

    UserID16644 UserID16644
    Discussions |
    Mar 3, 2024 11:17 PM
    1348 views | 2 replies
  • How to save Dashboard to run animation (.gif) through JSL?

    Hello expert,I want to save my Dashboard in .gif (animation) through JSL because "Date" is not interactive in html.The local data filter for animation is based on AVI date (date will change daily because data being refreshed).Manually, I can "save as" in .gif after I setup & run the animation controls.I think this type of analysis also can be automated through JSL.So I export the dashboard script ...

    WebDesignesCrow WebDesignesCrow
    Discussions |
    Mar 3, 2024 10:43 PM
    2686 views | 4 replies
  • Editable Report Preview in application Builder

    Hello guys,   I am using applciation builder to select name of report from the list box and its preview will be displayed  // This function will run on selection of each item in list box reportPreviewPrint = Function( {thisBox}, {Default Local}, //Get selected report name from the list box of open report names selectedReport = ListPrintReport << Get Selected; wList = Get Window List( Type( "R...

    ComplexNerd ComplexNerd
    Discussions |
    Mar 3, 2024 7:17 AM
    1259 views | 1 replies
  • Get Script after User Input and Script to String

    Hello Guys,New to jmp scripting. I require assistanceI want to get the script after user specifies the valid informationdt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" ); obj = dt << Variability Chart(); // I want to get Script after User clicks OK How to do thatIf i have a string and to run it as script i do this dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" ); theScript = "Variab...

    ComplexNerd ComplexNerd
    Discussions |
    Mar 2, 2024 10:11 AM
    1620 views | 3 replies

Latest Discussions

  • How to use wildcards in matching columns (Update Table)

    Hi all,How can I update a table using wildcard? I already tried to create a column with a substring formuladt << New Column( "Code Ref", Formula (Substr(:Code, 1, 4)) );TableACodeNameAgeABCD456Ann12ABCD123Roy16ABCD678Jean11 TableBCodeNameAgeABCD543John12FGR263Mike13ABCD975Rose8 After table update:CodeNameAgeABCD456Ann12ABCD123Roy16ABCD678Jean11ABCD543John12ABCD975Rose8 But I cannot use Code Ref as...

    UserID16644 UserID16644
    Discussions |
    Mar 3, 2024 11:17 PM
    1348 views | 2 replies
  • Get Script after User Input and Script to String

    Hello Guys,New to jmp scripting. I require assistanceI want to get the script after user specifies the valid informationdt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" ); obj = dt << Variability Chart(); // I want to get Script after User clicks OK How to do thatIf i have a string and to run it as script i do this dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" ); theScript = "Variab...

    ComplexNerd ComplexNerd
    Discussions |
    Mar 2, 2024 10:11 AM
    1620 views | 3 replies
  • Import Png pics in each cell

    Hello, Is there a way to import the Histogram (.png) pictures into the excel cell (fit the cell by image) using jsl? Something like this.....JSL to iterate over column groups to export the picturesNames Default To Here( 1 ); dt2= Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); maindir = Pick Directory( "Choose a directory to save distribution images" ); distributiondir = Concat( maindir || "/...

    Jackie_ Jackie_
    Discussions |
    Feb 29, 2024 8:49 AM
    1685 views | 2 replies
  • How to create different spec limits for different category in the group by item

    file_path = pick file(     "Select Excel File", "$Documents",     {"All Files|jmp;jsl;xlsx;xlsm", "JMP Files|jmp;jsl", "Excel Files|*"},     1, //select item     0, //save file     "Daily_Cpk.xlsx", //selected by default ); dt = open(file_path); //Xaxis = {"db_data_source_cd"};Yaxis = {"offset_micron"}; //data = {"datatag_cd"};summarize(uparam=by(datatag_cd)); nw = new window("Daily Line Machine C...

    CoverCapybara38 CoverCapybara38
    Discussions |
    Feb 29, 2024 3:04 AM
    1141 views | 1 replies
  • Class inheritance, what am i missing?

    I run into a problem while writing a series of classes inheriting from each other.i stripped the code to the basic example below for simplicity.Basically i have a series of classes inheriting from each other in cascade (called MyBaseClass, MyDerivedClass, MyDoubleDerived)and they differ for the value assigned to the F_Type property (value 1 2 and 3 respectively). i am creating an instance of MyDou...

    peri_a peri_a
    Discussions |
    Feb 28, 2024 5:57 PM
    3114 views | 7 replies

Latest Discussions

  • group file name and set lable by JSL looping, work fine but slowly

    I have a JLS works fine, but slowly, is there any method to improve it? 1. import multiple files2. base on file name rule group into a, b, c, d, e 3. base on file name rule to decide file count and set into rows for each groupNames Default To Here(1); dir = Pick Directory( "Select a directory" ); Multiple File Import( <<Set Folder( dir ), <<Set Show Hidden( 0 ), <<Set Subfolders( 0 ), <<Se...

    BayesRabbit7133 BayesRabbit7133
    Discussions |
    Feb 22, 2024 12:24 AM
    860 views | 0 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
    828 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
    745 views | 0 replies
view all discussions