I have been trying to write a lisp to create a 3D plate with a center hole in it and i can not get the "Subtract" command to work in lisp. I create a "box" then a "cylinder" after each of them i us the "entlast" function to identify them. However when i put in the command in the lisp, it does not except the entity that the "entlast" gives it. Below is how i have tried it and i can not get it to work. What am i doing wrong? (command "BOX" P6 P7 BPT) (setq E1 entlast) (command "CYLINDER" P5 PBR BPT) (setq E2 entlast) (command "Subtract" E1 "" E2 "")