I am new to lisp and trying to learn so please forgive what is probably a very simple question. I am trying to write a routine to search the drawing for any circles that are color 21 and change them to color 51. If there are no circles color 21 I'd like the routine to end. I've figured out how to create a selection set: (setq ss (ssget "x" '((0 . "circle")(62 . 21)))) How do I go about changing these circles to color 51? Any help would be greatly appreciated. Thanks.