I have a list in Sheet1 in below format
ColA ColB
abc 1,2
cde 3,4
In Sheet2, I added a dropdown list to the range C1:K10 and the list contains value abc, cde, dfg. This list allow selection of multiple values in the same cell For ex, cell C1 can have value abc, cde; ce;; C2 can have value dfg etc... When I select a value from dropdown list in Sheet2, it should check whether the value exist in ColA of Sheet1 and if yes, popup a message with the respective value from ColB of Sheet1. For ex:, When I first select abc in cell C1, MsgBox display 1,2 and then when I select cde in cell C1, MsgBox display 3,4. And the value of C1 will be abc, cde.
I already have the code written for multi value selection from list and it is working fine. I am looking for help on getting the MsgBox display correct.
ColA ColB
abc 1,2
cde 3,4
In Sheet2, I added a dropdown list to the range C1:K10 and the list contains value abc, cde, dfg. This list allow selection of multiple values in the same cell For ex, cell C1 can have value abc, cde; ce;; C2 can have value dfg etc... When I select a value from dropdown list in Sheet2, it should check whether the value exist in ColA of Sheet1 and if yes, popup a message with the respective value from ColB of Sheet1. For ex:, When I first select abc in cell C1, MsgBox display 1,2 and then when I select cde in cell C1, MsgBox display 3,4. And the value of C1 will be abc, cde.
I already have the code written for multi value selection from list and it is working fine. I am looking for help on getting the MsgBox display correct.