Anyone know how I can compare 2 pointers to see if they point to the same instance of an object. This is for searching a linked list for the last object in the list. Just comparing them,i.e. "do until listObject1 = listObject2", gives a error. I've also tried "listObject1.nextObject = Nothing" and "listObject1.nextObject = Null" which also give errors. I've been teaching myself how to write code in VBA and can't seem to remember anything about pointers from the other programming languages that I've long forgotten.