Hi I want to select an individual entity & make sure it is text This is what I came up with. It seems a bit repetitive. Is there a better way? ThisDrawing.Utility.GetEntity Ent1, Pt1, "Select the Text Object" If TypeOf Ent1 Is AcadMText Then Set Mtxt = Ent1 IPt = Mtxt.InsertionPoint ElseIf TypeOf Ent1 Is AcadText Then Set Txt = Ent1 IPt = Txt.InsertionPoint End If TIA Dave F.