I have two columns:
Column One: It's a multi-select dropdown list with the names of products (the quantity of selected products can be very long)
Column Two: It has the quantities of each product in the same order as Column One, separated by commas.
Example of one row:
Column One (dropdown list with multiple choices): Chair - Table - Tank
Column Two (text): "2,4,6"
This means that there are 2 Chairs, 4 Tables, and 6 Tanks.
Therefore, to make this match, I have to get the position of the product in the dropdown list. (It's like the FIND function, but instead of a string, it's a list).
Any advice on how to find the position of the product on the list would be very helpful! Thank you!