Hello,
I am using AutoCAD 2024.
To make a long story short, I have a drawing which has many lines drawn at 0.05mm, but also has lines drawn at 0.09mm and 0.15mm. I would like to change all of the 0.05mm lines to 0.15mm. As far as I can see, the FILTER command does not have an option to select objects by lineweight. Is there some way in AutoCAD to select objects by lineweight, so I can do a blanket selection for all of the 0.05mm lines? I was not able to find any threads about this using the search feature when I searched "filter by lineweight".
Thank you for any help.
Solved! Go to Solution.
Solved by apjones. Go to Solution.
Solved by cadffm. Go to Solution.
Solved by Kent1Cooper. Go to Solution.
Hi Michael,
In the Filter command is this not possible. Are these lines on a specify layer? If yes, you can try use this process:
https://help.autodesk.com/view/ARCHDESK/2022/ENU/?guid=GUID-7AD10AF7-EE2A-445D-91B4-9865B11CC701
Gostou da publicação? Não se esqueça de Curtir e marcar Aceitar como solução!
Luis André
LinkedIn | Instagram | Facebook | QualifiCAD | Credly
If you know where one is that you can select, SELECTSIMILAR can find other things of the same Lineweight, with or without also limiting to other properties such as Layer, object type, etc. [go into the SEttings option].
Or, if you have a known Lineweight, AutoLisp can find things. For 0.5mm Lines:
(sssetfirst nil (ssget '((0 . "LINE") (370 . 5))))
will find every Line among your selection [such as by window, etc.] that is of that Lineweight, and select-grip-highlight it/them. Likewise, other filter components can be added [on a particular Layer, etc.]. To find everything in the entire drawing, of any object type, of that Lineweight:
(ssget "_X" '((370 . 5)))
There are lots of filtering and selection options in (ssget).
Use the _.QSELECT command. (See attached Pic)
Thank you for all of these replies. I had forgotten about the QSELECT command, and was unaware of the SELECTSIMILAR command. I don't have a lot of time at work to look at these replies/test these things out (hence my replying on the weekend) but in the next week I should try these solutions and mark the corresponding answers as solutions.
And in answer to the question of if the lines are on a specific layer, they are unfortunately on multiple different layers.
Thank you
Can't find what you're looking for? Ask the community or share your knowledge.