Olá pessoal bom dia,
Tem alguém que sabe fazer para localizar todas as variáveis na planilha inteira?
Ah outra coisa, na macro que eu tenho para buscar texto, preciso fazer uma correção, em que ela busque não somente texte mas também pesquise números, ex.:EXP11225-11
A macro é a seguinte:
Sub Buscar_Texto()
Dim x As Byte
Dim y As Byte
Dim nTexto As Integer
On Error GoTo trataerro
nTexto = Application.InputBox("Informe o número da fatura", "Pesquisa")
If nTexto = False Then
Exit Sub
End If
x = ActiveWorkbook.Worksheets.Count
For y = 1 To x
Sheets(y).Activate
Set nCell = Cells.Find(What:=nTexto)
If nTexto = vbNullString Then
Exit Sub
End If
If Not nCell Is Nothing Then
Cells.Find(What:=nTexto).Activate
GoTo fim
End If
Next
Sheets("CAPA").Activate
MsgBox "Fatura não encontrada"
fim:
Exit Sub
trataerro:
If Err.Number = 13 Then
MsgBox "Digite o número"
End If
End Sub
Alguém poderia me indicar uma luz no fim do túnel?
Tks
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 30/08/2011 6:04 am