[vba]
If value_in_"User Data!A" & Listbox1.Listindex + 3 = 0 then
[/vba]
Maybe I am misreading this, but I do not think so. The value returned by .ListIndex should be -1 to one less that the list count. So as -1 + 3 is already 2......
[vba]
If value_in_"User Data!A" & Listbox1.Listindex + 3 = 0 then
[/vba]
Maybe I am misreading this, but I do not think so. The value returned by .ListIndex should be -1 to one less that the list count. So as -1 + 3 is already 2......