How do I macro variables with JMP, e.g. like SAS macro variables (scripting, JSL)
Let's imagine we work with the JMP file "abrasion.jmp", and we would want to like to apply something like the functionality of SAS' %let macro variables. In SAS I could execute WHERE clauses like ...(1) "where ABRASION is (&MY_ABRASION.);"... after having specified the macro vars before like: %let MY_ABRASION=133 ; (e.g. 1st usage) ...