Stream filter is not working

Hi, can someone help me please. I want getting the input together…

gate input must be only one value, not a list

and how can i solve it?

Can you upload a file and give some more explanation of what are you trying to do?

Stream Filter need a single integer value on its input “G”


Either you pick the data coming from “0” and completely ignore the data from “1” or vice-versa.
(with the same logic you can zoom-in and add multiple inputs, 0,1,2,3…etc)

You can’t “micro manage” values in lists with Stream Filter.
You can do that with Pick’n’Choose or Weave:



With Pick’n’Choose all of its inputs (P,0,1) must have same quantity.
For each index, it will pick the element on the chosen input and discard the same-index elements on other inputs.

Weave behave different. Its inputs (P,0,1) can have different amount of data.
Weave will always output all the inputs data by following the pattern P, when no data is left it will simply ignore that input and continue with any leftovers from other inputs.


You probably need to use Pick’n’Choose.