Add Rows Function Question
All, I am using JMP 13.1.0 on a Windows 7 machine. I am trying to add rows to a data table after a specific row. According to the documentation (http://www.jmp.com/support/help/13-2/Add_Rows_2.shtml) that I am referencing, the correct way to do that is : dt << Add Rows( 3, 10 ); /* add 3 rows after the 10th row, moving the 11th and lower rows farther down */
Now , ...