Unanswered question

Is it possible to save multiple columns data in the share queue

I want to store multiple columns of data in shared queue. If it is possible how to do it

Sadasivuni V.
Sadasivuni V.

Sadasivuni V.

Level
1
317 / 750
points

Answers

NEIL W.
NEIL W.

NEIL W.

Level
0
43 / 100
points

I've not tried but in theory you can concatenate values ${user.name}+++${user.pass}

You could pop them off the queue into a variable and then use some javascript to split the variable

var part1 = value.split("+++")[0]
var part2 = value.split("+++")[1]