Try the "Find" command.
![]()


Registered forum members do not see this ad.
I need to change a date on the titleblock in about 15 different layouts in the same dwg. However, there are additional layouts that do not need the date changed. The date that needs changing is in attribute form in in the "titleblock" block.
Try the "Find" command.
![]()
Please do not PM me with CAD questions. Post your question on the forum. Our users are the best out there and you'll get the best possible answer to your question.
- http://f700es.deviantart.com/gallery/ - - http://cad-guy.tumblr.com/ -



also make sure you click on options and only have the check box for block attribute value only...


alright now what if the particular attribute is empty, such that I have nothing to "find"?



then you'll have to do it the hard way...type it in...




You could search for all the title block of a partivcular name in the drawing and change the one Attribute that would be easy but it would change every single one.
To change one and not another on a different sheet would require a lot more code.
here is an example of what you want
Public Sub issued_for_construction()
' This Updates the Issued for construction and sets rev 0
Dim SS As AcadSelectionSet
Dim Count As Integer
Dim FilterDXFCode(1) As Integer
Dim FilterDXFVal(1) As Variant
Dim attribs As Variant
Dim BLOCK_NAME As String
On Error Resume Next
FilterDXFCode(0) = 0
FilterDXFVal(0) = "INSERT"
FilterDXFCode(1) = 2
FilterDXFVal(1) = "DA1DRTXT"
BLOCK_NAME = "DA1DRTXT"
Set SS = ThisDrawing.SelectionSets.Add("issued")
SS.Select acSelectionSetAll, , , FilterDXFCode, FilterDXFVal
For Cntr = 0 To SS.Count - 1
attribs = SS.Item(Cntr).GetAttributes
attribs(0).TextString = "ISSUED FOR CONSTRUCTION"
attribs(3).TextString = "0"
attribs(0).Update
attribs(3).Update
Next Cntr
ThisDrawing.SelectionSets.Item("issued").Delete
Please do not PM me with CAD questions. Post your question on the forum. Our users are the best out there and you'll get the best possible answer to your question.
- http://f700es.deviantart.com/gallery/ - - http://cad-guy.tumblr.com/ -
Registered forum members do not see this ad.
-ATTEDIT
Edit one at a time? NO
TAG? Your tag
Value? New value
Bookmarks