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: Limitar as células de uma macro Dim hor As Range Dim W As Worksheet Set W = WB.Sheets("Plan1") Set hor = W.Cells(5, W.Columns.Count).End(xlUp) D... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Empilhar múltiplas colunas numa só em outra aba Se foi resolvido o problema, favor marcar o tópico como resolvido. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Call Coluna End Sub ... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: AJUDA PARA REALINHAR DADOS Favor marcar como resolvido. Option Explicit Sub copiarDados() Dim I As Long Dim LINHA As Long For I = 1 To ThisWorkbook.Sheet... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Function com IRERROR Veja se você inserir a fórmula na célula do Excel dá erro. Se der erro, poste sua dúvida no fórum de fórmulas e funções aqui do planilhando mesmo. Se ... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Function com IRERROR O problema, neste caso, indica que a função não pode retornar o valor desejado. Por exemplo, se usamos a função MATCH, o erro indica que a função não ... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Function com IRERROR v = WorksheetFunction.AverageIfs(columnA, columnA, "<3", columnB, "2") If Err.Number = 1004 Then 'No matc... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Function com IRERROR Se o código resolveu o problema, favor marcar o tópico como resolvido. 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Function com IRERROR Range("L63").Value = WorksheetFunction.IFERROR(WorksheetFunction.AverageIfs(Plan2.Range("AG:AG"), Plan2... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Somase em vba Favor marcar o tópico como resolvido. 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Soma Acumulada Dinâmica Se o código resolveu o problema, favor marcar o tópico como resolvido. 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Somase em vba Private Sub CommandButton1_Click() Dim linha As Long Dim soma As Double soma = 0 linha = 2 While ThisWorkbook.Sheets("Pl... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Soma Acumulada Dinâmica Favor baixar o arquivo novamente, pois foi alterado. 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Soma Acumulada Dinâmica Alterei o código. Favor verificar o arquivo anexo. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim linha As Long l... 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Soma Acumulada Dinâmica Código corrigido abaixo 8 anos atrás Fórum 2024 - VBA & Macros Responder Re: Criar sequencia de arquivos Option Explicit Private Sub CommandButton1_Click() Dim i, inicio, fim As Integer On Error GoTo final inicio = CInt(txtInicio.Text) fim = CInt(t... 8 anos atrás Fórum 2024 - VBA & Macros Página 62 / 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 Próximo