Hi everyone,
Ok i sorted out my combobox issues whoo hoo,, Special thanks to My Answer Is and Fluff great job guys.
My next question/dilema is, now i am populating several textboxs based on my combo selection. sofar this is working but only returning matching values from one worksheet. My comboboxes look at 2 different worksheets so i can get all my Movie information into my textboxs but when i switch to looking at my Music selections i cant get my textboxes to populate with that corresponding info, see below for a line of code that i am currently using to populate text box.
can i just simply modify this code to allow for 2 worksheets?
i have tried a few different ways of doing this but with no success so far.
Thanks in advance
Ok i sorted out my combobox issues whoo hoo,, Special thanks to My Answer Is and Fluff great job guys.
My next question/dilema is, now i am populating several textboxs based on my combo selection. sofar this is working but only returning matching values from one worksheet. My comboboxes look at 2 different worksheets so i can get all my Movie information into my textboxs but when i switch to looking at my Music selections i cant get my textboxes to populate with that corresponding info, see below for a line of code that i am currently using to populate text box.
can i just simply modify this code to allow for 2 worksheets?
i have tried a few different ways of doing this but with no success so far.
Code:
TxtCountry.Text = Application.VLookup(cboName.Value, Worksheets("MovieList&Details").Range("B3:R500"), 14, False)
Thanks in advance