@Joseph_henderson wrote:
Do you know how to enter that into the dim style manager so that I can apply that to many dimensions on other drawings.
Unfortunately I don't think it's possible to do it that way. AutoCAD uses separate variables for the dimension text and the alternate units text (DIMPOST and DIMAPOST) and simply puts them together, with the alternate bit in square brackets, when a dimension is created. There is no provision in the dimension style for adding more text after that.
Have you tried to clipboard copy the text override from one dimension's properties palette, select the dimensions you want to change and then paste the text back into the palette?
You could also use something like this simple lisp routine to define a new command (DIMNOTE) that creates a new dimension and then modifies the text to suit your format:
(defun c:dimnote ( )
(command "._dimlinear" pause pause pause)
(command "._dimedit" "_new" "<>\\P[]\\S ^ ;\\XNOTE1\\PNOTE2" "_last" "")
(princ)
)
Copy this to a text editor such as notepad, change NOTE1 and NOTE2 to whatever text you need and save as a .LSP file. Use AutoCAD's APPLOAD command to load the file and add it to your startup suite so that it will always be readily available.
I'm sure there are lisp users on here, more experienced than me, who could advise on how to improve this too.
Here are links to help on using formatting codes in alternate text editors:
http://help.autodesk.com/view/ACD/2019/ENU/?guid=GUID-6F59DA4A-A790-4316-A79C-2CCE723A30CA
http://help.autodesk.com/view/ACD/2019/ENU/?guid=GUID-7D8BB40F-5C4E-4AE5-BD75-9ED7112E5967