I have a list of entities that I want to go through one by one and test for the existence of that entity. The idea is that I am saving a tab name and a viewport entity name in a list. When I retrieve the entity name I would like to be able to test for it's existence before manipulating it, this way I could test to see if it had been erased. I've tried several versions of: (ssget "x" (list '(-1 . entity))) and (ssget "x" (list (cons -1 entity))) Where entity is the entity name. Does anyone have any suggestions on how to perform this test?