Hello all,
I am trying to set a condition where if an item.Type has a certain value they will get pulled to a certain processor. However, I have to use a global list for other functions and am unable to use the port to case option for output.
I woud like for processors to pull the item based on their value instead. Upon looking through the manual I have came up with various functions like:
List("Name").entries()[1].value == 1
List("Name").stats.input.value == 1
Variant value= item.Type;
value== 1 (I suspect this didn't work as items were pushed to the global list)
From my understanding, this would set off the condition where item gets pulled if the value is correct. Is there a way to find out the value from before items were pushed to the global lists?
On a side note, could it work if the condition was value == 1 || value == 3 (ie the processor would pull if value was either 1 or 3)?