Descricao: |
Escola Saberexcel VBA Estudos - o site de quem precisa aprender macros ms Excel VBA
Esse macro do Aplicativo Microsoft Excel VBA, com auxílio da Função Procv(WorksheetFunction(VBA)), montamos um pequeno sistema de busca de valores em um banco de dados em outra folha de planiha. Também ligamos o macro diretamente na lista suspensa pelo EventoChange(Worksheet) 'ao digitar' em determinada célula, conform os macro e procedimento abaixo. Não deixe ler sobre as poderosíssima WorksheetFunction(Funções de Planilhas(VBA)), desenvolvemos 340 folhas planilhas uma para cada função do Excel para retorno VBA(Visual Basic Application). Excel planilha wkf WorkSheetFunction Funções de Planilhas retornam valores vba Fique com Deus, Expedito Marcondes ' - - - - - - - - - - - - - - - - - - - - - - - - - - -'
Const s = "Insira um valor para busca" Const b = "Escola Saberexcel VBA Estudos®" Const a = vbInformation
Private Sub Worksheet_Change(ByVal Target As Range) Dim vNumero As String If Target.Column = 3 Then Application.EnableEvents = False
On Error Resume Next vNumero = CDbl(Target.Value)
If vNumero = 0 Then MsgBox s, a, b Target.Offset(0, 3) = "" Application.EnableEvents = True Exit Sub
Else
On Error Resume Next 'False(Valor Exato) True(Valor Aproximado) nValor = Application.WorksheetFunction.VLookup(CDbl(vNumero), Saber1.Range("a2:e120"), 2, "False") eValor = Application.WorksheetFunction.VLookup(CDbl(vNumero), Saber1.Range("a2:e120"), 3, "False") cValor = Application.WorksheetFunction.VLookup(CDbl(vNumero), Saber1.Range("a2:e120"), 4, "False") fValor = Application.WorksheetFunction.VLookup(CDbl(vNumero), Saber1.Range("a2:e120"), 5, "False")
'retornando valores para as colunas desejdas Target.Offset(0, 4) = nValor 'nome Target.Offset(0, 8) = eValor 'endereço Target.Offset(0, 12) = cValor 'cidade Target.Offset(0, 16) = fValor 'estado uf
If nValor = "" Then MsgBox "Dados não encontrados",a,b End If
Application.EnableEvents = True
End If End If End Sub
' - - - - - - - - - - - - - - - - - - - - - - - - - - -' Exemplo de MoveMouse Private Sub Image1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) Dim Resposta As String Resposta = MsgBox("deseja conectar com nosso site ?", vbYesNo + vbQuestion, "Saberexcel - site das macros") If Resposta = vbYes Then ThisWorkbook.FollowHyperlink "http://www.microsoftexcel.com.br/", , True End If End Sub
Aprenda tudo sobre planilhas do Aplicativo Microsoft Excel VBA(Visual Basic Application), sozinho, com baixo custo, praticando com os produtos didáticos Escola Saberexcel VBA Estudos® - Treinamentos com Macros, Fórmulas e Funções.
|