If I pull from a list and use a query like:
WHERE BatchVal = Puller.Batch
It works fine if the BatchVal label is a number and Puller.Batch is a number.
If I query:
WHERE BatchText = Puller.Batch
It does not work if BatchText and Puller.Batch are text labels.
However if I query
WHERE BatchText = "The text"
It does work. However, I'm stuck with static query that does not modify for the next incoming token.
I would like to query the batch with a text label so I can pull the tokens with matching text label.