VBA Excel: A forma MAIS SIMPLES de encontre a Última Linha Preenchida em sua Planilha

  Рет қаралды 1,101

Excel InCompany

Excel InCompany

Күн бұрын

Пікірлер: 3
@accesscontabil
@accesscontabil 17 сағат бұрын
muito bom! também pode usar o range("a1").end(xldown).row (se a coluna já estiver preenchida) Mas muito top a dica!
@legiaoanimes3074
@legiaoanimes3074 Жыл бұрын
alguem pode me ajudar com isso? basicamente quero selecionar dados das planilhas 1 e 2 e fazer uma tabela dinamica na planilha Gráficos Sub GerarRelatorio() Dim planilhaGraficos As Worksheet Dim planilha1 As Worksheet Dim planilha2 As Worksheet Dim ultimaLinhaPlanilha1 As Long Dim ultimaLinhaPlanilha2 As Long Dim ultimaLinhaPlanilhaGraficos As Long Dim tabela1 As PivotTable Dim tabela2 As PivotTable ' Definir as planilhas Set planilha1 = ThisWorkbook.Worksheets("Planilha1") Set planilha2 = ThisWorkbook.Worksheets("Planilha2") Set planilhaGraficos = ThisWorkbook.Worksheets("Gráficos") ' Obter a última linha das planilhas ultimaLinhaPlanilha1 = planilha1.Cells(Rows.Count, 1).End(xlUp).Row ultimaLinhaPlanilha2 = planilha2.Cells(Rows.Count, 1).End(xlUp).Row ultimaLinhaPlanilhaGraficos = planilhaGraficos.Cells(Rows.Count, 1).End(xlUp).Row ' Criar a tabela dinâmica1 Set tabela1 = planilhaGraficos.PivotTables.Add(TableDestination:=planilhaGraficos.Range("A3"), TableName:="TabelaDadosDinâmica1") tabela1.SourceDataSheet = planilha1.Name tabela1.SourceData = planilha1.Range("A3:C" & ultimaLinhaPlanilha1).Address With tabela1 .PivotFields("Consignataria").Orientation = xlRowField .PivotFields("Desconto").Orientation = xlDataField .AddDataField .PivotFields("Desconto"), "Soma de Descontos", xlSum .AddDataField .PivotFields("Desconto"), "Contagem de Descontos", xlCount .RowAxisLayout xlTabularRow .PivotFields("Consignataria").AutoSort xlAscending, "Consignataria" End With ' Criar a tabela dinâmica2 Set tabela2 = planilhaGraficos.PivotTables.Add(TableDestination:=planilhaGraficos.Range("E3"), TableName:="TabelaDadosDinâmica2") tabela2.SourceDataSheet = planilha2.Name tabela2.SourceData = planilha2.Range("A3:C" & ultimaLinhaPlanilha2).Address With tabela2 .PivotFields("Consignataria").Orientation = xlRowField .PivotFields("Vl Total Desconto").Orientation = xlDataField .AddDataField .PivotFields("Vl Total Desconto"), "Soma de Vl Total Desconto", xlSum .AddDataField .PivotFields("Vl Total Desconto"), "Contagem de Vl Total Desconto", xlCount .RowAxisLayout xlTabularRow .PivotFields("Consignataria").AutoSort xlAscending, "Consignataria" End With ' Formatar as tabelas dinâmicas planilhaGraficos.PivotTables("TabelaDadosDinâmica1").DataBodyRange.NumberFormat = "#,##0.00" planilhaGraficos.PivotTables("TabelaDadosDinâmica2").DataBodyRange.NumberFormat = "#,##0.00" ' Formatar as colunas J e K como porcentagem planilhaGraficos.Range("J3:J" & ultimaLinhaPlanilhaGraficos).NumberFormat = "0.00%" planilhaGraficos.Range("K3:K" & ultimaLinhaPlanilhaGraficos).NumberFormat = "0.00%" ' Alinhar o texto à esquerda planilhaGraficos.Range("A3:K" & ultimaLinhaPlanilhaGraficos).HorizontalAlignment = xlLeft ' AutoAjustar a largura das colunas planilhaGraficos.Columns.AutoFit MsgBox "Relatório gerado com sucesso!", vbInformation End Sub
@excelincompany
@excelincompany Жыл бұрын
Olá legiaoanimes, a primeira coisa que você precisa verificar é se os objetos chamados no código existem, a saber: "Planilha1" "Planilha2" "Gráficos" Logo em seguida verificar se as suas tabelas de referencia começam na coluna 1 (coluna "A"). Você precisa verificar estes pontos, pois é assim que estão fixados no código. Após verificar isso, caso após rodar o código ainda apresentar erro, aí é necessário depurar e ver onde está aparecendo o erro nos códigos. Forte abraço
Automatizando o WhatsApp com VBA: Envie Mensagens Diretamente do Excel!
17:30
EASILY Make an Automated Data Entry Form in Excel
14:52
Kenji Explains
Рет қаралды 795 М.
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 30 МЛН
这是自救的好办法 #路飞#海贼王
00:43
路飞与唐舞桐
Рет қаралды 110 МЛН
Wait for the last one 🤣🤣 #shorts #minecraft
00:28
Cosmo Guy
Рет қаралды 25 МЛН
Descobrindo a ÚLTIMA LINHA PREENCHIDA de uma TABELA
28:43
Hashtag Treinamentos
Рет қаралды 41 М.
Como fazer Cronograma em Excel com Gráfico de Gantt (Planejamento)
8:55
Permitir Colar apenas valores Excel VBA
23:42
Guia do Excel
Рет қаралды 5 М.
Copiar e Colar VBA - Copy e Paste VBA - Compilação de Vendas
9:59
Hashtag Treinamentos
Рет қаралды 45 М.
Usando o Método FIND no Excel VBA
11:33
Access Facil
Рет қаралды 3,6 М.
TUDO sobre TABELA DINÂMICA no EXCEL
39:56
Hashtag Treinamentos
Рет қаралды 786 М.
COMO OCULTAR OS CONTROLES DO EXCEL - CÓDIGO SIMPLES EM VBA
11:50
Ação Treinamentos
Рет қаралды 4,4 М.