Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As captioned top, I want to copy the dimension to excel from left to right cell. How can I do? Anyone help?
Solved! Go to Solution.
As captioned top, I want to copy the dimension to excel from left to right cell. How can I do? Anyone help?
Solved! Go to Solution.
Give dimtoxcl.lsp a try.
This should take all the dimensions you select in the same row and sorts them left to right and place in to row in Excel.
You can try the freeware utility Click2XLS (its Text2XLS command) - supports all kinds of drawing texts, incl. dimensions as they are displayed.
https://www.cadforum.cz/en/export-text-from-dwg-drawings-to-excel-tip9814
Vladimir Michl, www.arkance.world - www.cadforum.cz
EXACTLY WHAT i WANT! THANK YOU VERY MUCH!
Thank you very much!
Glad to have helped…cheers!!!
If I need to sort x=right to left?
I find it. It should be
(defun sortListofSublistsbyItemX (lstOfSublists intItem)
(vl-sort lstOfSublists '(lambda (X Y) (< (nth intItem X) (nth intItem Y))))
) ; sortListofSublistsbyItemX
">" change to "<"
yep, that's it!!!