Hi there,

There is a list a a web page, where I can select multiple values by holding 'Ctrl' + 'Clicking'.

I want to use VBA to select multiple values from this list.

The elements are below.

HTML Code: 
Now to select one value I would use the below code...

Please Login or Register  to view this content.
But I can't seem to figure out how to select multiple values (I also don't want to select all values).

Does anyone have an idea how to fix this?

I have tried using an array. So instead of value = "36", I tried to use value = MyArray; where MyArray = Array("36", "37", "38") but with no success.

Thanks,

Al