I have a requirement in my application where I need to be able to map products to a particular market. Right now we have two Markets, Market M and Market N.
For my products A, B, C I need to map to Market M and Market N. Product B belongs to both Market M and Market N.
Product
Market
A
M
B
M
B
N
C
N
I have used applymap function to map the products to the market, however for Product B I am only getting Market M as a result. It is not mapping to Market N as well. Is there a way I can map to both markets? Is there another function that I would have to use?