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)
%let MY_ABRASION=145 ; (e.g. 2nd usage)
(2) "where DATE eq (&MY_DATE.);"
...after having specified the macro vars before like: %let MY_DATE="29Feb1995"d; (e.g. 1st usage)
%let MY_DATE="2May1995"d ; (e.g. 2nd usage)
(3) or even as combination like "where DATE eq (&MY_DATE.) and ABRASION is (&MY_ABRASION.)"; ...
How could you do that in JMP?
Please provide practical examples.
Thanks a lot,
Newbie (still)