assuming that you are refering to point entities:
copy the text below the line of askerisks to a text file and save it as PList.lsp, then use appload to load it into AutoCAD. After the program loads, enter plist at the command line. The program writes the point location out to a comma delimited text file that you can open in Excel.
I hope that this helps
**********************************************************
;;PList.lsp - collect all points in drawing and write them to a comma delimited file
(defun C

LIST (/ POINT_LIST INDEX PFILE);;define function - declare local variables
(setq POINT_LIST(ssget "x" (list '(0 . "POINT"

)));;create selection set of all points
(setq INDEX 0)
(setq PFILE (open "PLIST.TXT" "w"

);;create file to write to
(repeat (sslength POINT_LIST);;recurse through the selection set
(setq POINT (cdr(assoc 10(entget(ssname POINT_LIST INDEX)))))
(setq X (car POINT)
y (cadr POINT)
Z (caddr POINT)
)
(write-line (strcat (rtos X)","(rtos Y)","(rtos Z)) PFILE)
(setq INDEX (1+ INDEX))
);;end repeat
(close PFILE);;close PLIST.TXT
);;End of function
(prompt "\nType PLIST to execute"
