Hi edrivera3,
You can use mvexpand with eval to do this.
Here is the sample query for you.
Your base query
| eval tagged=mvzip(testNUM, connBlock)
| mvexpand tagged
| makemv tagged delim=","
| eval testNUM=mvindex(tagged,0)
| eval connBlock=mvindex(tagged,1)
| table *
Hopefully this will get you what your expecting to do.
Cheers!
... View more