Formula to check if any of a list of items is contained in the rows of a column
JMP for Mac Version 17.2.0 (701896) I have a column "Data" with rows of number_number like this:1_33_76_5... I want to test this column to see if some of the rows contain values from a list of values and then flag or label the rows which do. I know I could construct an elaborate formula like this:If( :Die X_Y == "3_9" | :Die X_Y == "3_4",
1,
0
)
But that's very laborious for long lists of differe...