I can’t figure this out:
I have 2 custom state lists
List A {a,b,c)
List B (1,2,3)
I want to combine them into a new custom state list: (a_1, b_2, b_3)
where each List A & List B will always have the same number of items (3 items in the aboe example), but it can have more or less…like if it had 5 items it would be:
List A (apple, banana, pear, berry, orange)
List B (3, 5, 2, 5, 4)
When combined it will be: (apple_3, banana_5, pear_2, berry_5, orange_4)
is this possible? pls help! i’m new and i’ve been working on this for a few days now…thank you!