wrote: 12345 is the base number and A01 is the configuration. If I want to use automatic text annotation on the drawing to only point out the base number within the ID, how do i go about doing that
<WRef1*0@DB_PART_NO> will only display "12345-A01" but how do I get only "12345" if possible?
You can use the Expression editor to create expressions read these Part Attributes and return your desired string, which could then be referenced in your annotation. For example (assuming DB_PART_NO is driving ID):
first(splitstring(DB_PART_NO;"-")) // returns "12345"
wrote: If I were to use <W@$SH_PART_NAME> , then "12345-A01/01( ) -PANEL" would be returned (ID / Rev / Name). Is there a way to only get "12345" out of this?
Only with expression string manipulation (as mentioned above), though you cannot access system attributes (attributes preceeded with "$") with the expression editor.
wrote: Also, if the ladder is "Part_Name" why is it returning the ID, rev, and name and nit just the name?
If you want the name, reference the DB_PART_NAME Part Attribute in your annotation.