Compare number in list

I think you want to use the does list contain block:

But you also need to know that you can’t directly compare a text string to a number. For example, “40” does not equal 40. You need to convert one of them. One way to do this is to add zero (0) to the text string. That converts it to a number and then you can directly compare that value to another number.

1 Like