Over 1.104.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and sys.variables and env.variables,.
   
 CAD tip # 6403:
Question
A
        
  You can use severel methods to select all texts of a specific type (value) in a drawing. Let us have a drawing containing three separate text objects (Dtext/Mtext): Adam,Bravo,Charlie. Our goal is to select the text entities Adam and Bravo.
   
	The simplest way is to use the FILTER command. In the filter type choose Text, value and in the X field enter [AB]* (see wildcard characters in Help). Click the "Add to list" button and use the filter.
Another option is to use a filter in the AutoLISP selection function - (ssget). For the requested type of selection, this function would read:
(ssget "_X" '((0 . "TEXT,MTEXT")(1 . "A*,B*")))You can enter this LISP expression directly on the "Select objects" prompt.
     ACADADTACADMCivil
   
    
    19.11.2008
        43097×
      
   
   
    this tip shared by ARKANCE experts applies to: AutoCAD · AutoCAD Architecture · AutoCAD Mechanical · Civil 3D · 
![CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

