Saberexcel - site das macros Essas macros do Aplicativo Microsoft Excel VBA, oculta e ou na lista de nomes todas as range nomeadas que inicia-se com a letra(G).
Option Explicit
Sub ocultar_range_letra_inicia_G() Const Prefix As String = "G"
Dim vNome As Name
For Each vNome In ActiveWorkbook.Names If Left(vNome.Name, Len(Prefix)) = Prefix _ Or InStr(vNome.Name, "!" & Prefix) Then vNome.Visible = False End If Next vNome
End Sub
Sub Visualizar_range_name_inicia_G() Const Prefix As String = "G"
Dim vNome As Name For Each vNome In ActiveWorkbook.Names If Left(vNome.Name, Len(Prefix)) = Prefix _ Or InStr(vNome.Name, "!" & Prefix) Then vNome.Visible = True End If Next vNome
End Sub
Aprenda tudo sobre o Aplicativo Microsoft Excel VBA com SaberExcel
Compre com garantia e bons preços nas lojas submarino
|