Is there a simple way to duplicate the following AutoLISP commands in VBA. All I want to do is change multiple layer colours on one line, similar to -layer color red mx_*,text_* In VBA, I have to enter each filter through a separate IF statements Dim layer As AcadLayer For Each layer In ThisDrawing.Layers If StrConv(layer.Name, vbLowerCase) Like "mx_*" Then layer.color = acRed End If If StrConv(layer.Name, vbLowerCase) Like "text*" Then layer.color = acRed End If Next layer Is there a shorter method for altering multiple layer properties, using multiple wild card filters? Thanks in advance AM