Hello -
My macro's objective is to determine if any 1 of 21 string values exists in a list passed to it. If yes, set the cell to the right to '1'.
I defined 1 range (= list passed in, starting with first value and looping to end of list).
I individually coded each of the 21 possible string values as I was not sufficiently skilled to 'double range'.
Using code below, I am getting 'Run Time 424 - Object Required'
Where the code breaks, I have tried the following:
Set Products = Worksheet.Range("B13")
Products = Range("B13")
Products = Range("B13").Value
Set Products = Range("B13").Value
Set Products = Range("B13").Select
Products = Range("B13").Select
I AM on IE6. There are no pivot charts involved.
What am I doing wrong? Thanks.
Bookmarks