Divisible by ten filter

Any way to make a filter with a number input, and an output for if it’s divisible by ten or not

Use “expression” and then put multiple filters with the multiplication tables of 10

Use an expression with the modulus (%) operator. The modulus divides two numbers, but returns the result instead of the remainder, so the result of 16 % 10 is 6, and the result of 30 % 10 is 0.

So basically, just make an expression with “A % 10” and add a filter to see if the output is 0.

http://flowlab.io/behavior_handbook/#logic-math-expression