How do I combine items in 2 custom state lists into a new list?

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!

Could you give more information as to why you need this? That may help us give you a better solution.

There’s definitely a way to do this but it may be cumbersome for no reason.

This topic was automatically closed after 70 days. New replies are no longer allowed.