Passing data based on criteria

Anyone know how to do this?

  1. Data coming in from module1 updates module2

  2. module2 can only receive X, which is 97% of the time

  3. 3% of the time module1 gets a random Y which can not pass to module2

  4. Along with X or Y there is also a color type: blue or green.

  5. module2 wants the color type, even if it doesn’t get it’s X!

  6. but module2 doesn’t not know how to get it’s color type when Y comes in.

How do i get all other data to pass from one module to another when one of the data points being passed can not be received by module2 because its a Y?

I would say, something between m1 & m2 that stops Y but allows blue or green to continue to module2 to complete the automation.

Much Thanks
Oti

Hey Otis,

you can have a switch() formula inside module 2where it checks the incoming value and if its Y replace it with {{null}}.

1 Like