Filters data with customizable rules. Use any number for input, don't use spaces with multiple data. (Example: 1,2,3 CORRECT 1, 2, 3 WRONG) Filtered-By shows how each input was filtered by a rule, 1=passed and 0=failed Surviving shows input that passed all rules Rules (DON'T USE PARENTHESIS FOR RULES) Only_=(number) - Checks if the input is a specific number Only_>(number) - Checks if the input is greater than the number Only_<(number) - Checks if the input is less than the number You can also list rules multiple at once by chaining them with a comma - same as numbers. Don't use spaces when chaining! Instead, you must do Only_<(number),Only_=(number) etc.