Hello all
I'm trying to make some simple macro that change the number of the idsymbol, but first i must to know in what sheet this idsymbol is located. In this case i'll change the number of the idsymbol on X sheet.
can someone help me?
i've made this.
if they found some error with number five, they will create the attribute.
"on error goto asd"
your code here
asd:
if err.number = 5 then
workPart.SetAttribute("YOUR ATTRIBUTE", "VALUE OF ATTRIBUTE")
resume
else
msgbox(err.number & vbcrlf & err.description, title:="Error")
end...