How can I use the combo box to skip over certain columns for legend?
Hi,
I am trying to only display certain columns in the combo box as legends, but the current code I have takes the column one by one. Is there any way in which I can skip over certain columns?
For example, in this case, I only want :subject & :season in the legend list. Here's my code:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Animals.jmp", invisible );
legend_list = {"subject", "sea
...