If you use this formula in a new column, it will return the JMP color number for the row. from there you can set your values.
Color Of( Row State( Row() ) )
Depending on the colors you chose, it may provide a pretty big negative number......but you just have to know what the numbers are, and then use it appropriately
If(Color Of( Row State( Row() ) ) == -13912408, "Good",
color Of( Row State( Row() ) ) == -4042310, "OK",
"Bad")
You can also just create a new column with the Modeling Type of "RowState". Then in the columns panel on the left of the data table, you can right click on the red star next to the new RowState column you created, and select " Copy from RowStates". You will then have a column you can sort, etc.
Jim