Descricao: |
SaberExcel - o Site das Macros Essa macro do Aplicativo Microsoft Excel VBA, insere fórmulas para buscar dados em uma determinada base de dados em outra planilha, observem que a macro busca dados baseados ao texto(letra) digitado na Inputbox (Entrada de Dados)
Sub Retornar_formula()
Dim vLetraColuna As String
vLetraColuna = InputBox("Entre com a letra da coluna para buscar os dados.", "Digite: a,b,c,...") Sheets("Formulário").Select
'retornará a fórmula e preencherá as células correspondentes para montar' 'os dados na coluna(B)
'Item #1 Range("F7").Select On Error Resume Next If IsEmpty(Range("Dados!" & vLetraColuna & "1").Value) Then ActiveCell.Value = "" Else ActiveCell.Formula = "=Dados!" & vLetraColuna & "1" End If
'Item #2 Range("F9").Select If IsEmpty(Range("Dados!" & vLetraColuna & "2").Value) Then ActiveCell.Value = "" Else ActiveCell.Formula = "=Dados!" & vLetraColuna & "2" End If
'Item #3 Range("J10").Select If IsEmpty(Range("Dados!" & vLetraColuna & "3").Value) Then ActiveCell.Value = "" Else ActiveCell.Formula = "=Dados!" & vLetraColuna & "3" End If
'Item #4 Range("H11").Select If IsEmpty(Range("Dados!" & vLetraColuna & "4").Value) Then ActiveCell.Value = "" Else ActiveCell.Formula = "=Dados!" & vLetraColuna & "4" End If
'Item #5 Range("D11").Select If IsEmpty(Range("Dados!" & vLetraColuna & "5").Value) Then ActiveCell.Value = "" Else ActiveCell.Formula = "=Dados!" & vLetraColuna & "5" End If
'Retornando a célula f7 ítem #1 Range("F7").Select
MsgBox ("Os dados formam baixados com sucesso da coluna : < " & vLetraColuna & " >.")
End Sub
Aprenda tudo sobre o Aplicativo Microsoft Excel VBA
|