I have a lisp program that will calculate the sum of areas. The units is in sq in. Is there a way to modify the program to make the units sq ft besides dividing by 144 on a calculator? Any help is appreciated. (DEFUN C:AREASADD () (PROMPT " SELECT AREAS TO ADD TOGETHER: ") (SETQ P_AREA 0.0) (SETQ SS (SSGET)) (WHILE (> (SSLENGTH SS) 0) (SETQ EN (SSNAME SS 0)) (SETQ ED (ENTGET EN)) (SETQ AS (CDR (ASSOC '0 ED))) (IF (or (= AS "LWPOLYLINE") (= as "POLYLINE")) (PROGN (COMMAND "_AREA" "_E" EN) (SETQ P_AREA (+ P_AREA (GETVAR "AREA"))) (SSDEL EN SS) ) (SSDEL EN SS) ) ) (PROMPT (STRCAT " TOTAL AREA IS : " (RTOS P_AREA 2 2))) (princ) )