Fóruns Membros klarc28 Atividade Notifications Clear all klarc28 @klarc28 Prominent Member Entrou: dez 8, 2017 Follow Perfil Atividade Tópicos: 16 / Respostas: 955 TodosTópicosRespostas Responder Re: Preencher listbox com combobox (conforme exmplo) https://www.youtube.com/results?search_query=vba+pesquisa+listbox 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Pode ser que assim melhora: Private Sub Worksheet_SelectionChange(ByVal Target As Range) On Error Resume Next Dim INTERVALO As Range Set INTE... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Este vídeo explica um código parecido: https://www.youtube.com/watch?v=6yzzeWKbHAQ&t=806s 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Veja se assim melhora: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim INTERVALO As Range Set INTERVALO = ThisWorkbook.... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Funcionou no arquivo anexo. Se não funcionar na sua planilha, crie outra, pois ela está estranha. 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Dim INTERVALO As Range Set INTERVALO = ThisWorkbook.Sheets... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim INTERVALO As Range Set INTERVALO = ThisWorkbook.Sheets("Plan1"... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Range(Target.Address).Value = "X" Then Range(... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Marcar X com macro Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Range(Target.Address).Value = "X" Then Range(Target.Address)&... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Trocar números por letras? Perfeito, Mauro. Muito obrigado. Agora eu quero outro código que faça essa permutação com letras da seguinte forma: Pode ser mais de uma letra agrupa... 8 anos atrás Fórum 2024 - VBA & Macros Tópico Trocar números por letras? 8 anos atrás Fórum 2024 - VBA & Macros Replies: 5 Views: 1657 Página 65 / 65 Anterior 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65