Splitting/Switching Nulls for One Counter

Hello!

I’m getting stuck trying to figure out how to split or switch the counter between two nulls?
Pretty much what I’d like to happen is for the counter to go up but every other count would be sent to a different null… For instance

Counter1 (value 1)–>Null 1 (value 1)
Counter1 (value 2)–>Null 2 (value 2) *null 1 would stay at 1 until the next time count
Counter1 (value 3)–>Null 1 (value 3)
Counter1 (value 4)–>Null 2 (value 4)

Let me know if this makes sense!

Thanks so much in advance.

here’s one method using Expression CHOPs

count_odd_even.tox (654 Bytes)

Ahhhh so great! Thank you so much!