Buen día. Consulta con un código VBA
Tengo el siguiente código:
Private Sub cmdConsulta_Click()
Dim ApNom As String
Dim idBusca As String
Dim fila As Integer
Application.ScreenUpdating = False
Sheets("DIRECTORIO").Select
fila = 0
ApNom = txtApellidoNombre
Do While idBusca <> ApNom
fila = fila + 1
idBusca = Range("A" & fila).Value
If idBusca = Empty Then
Sheets("DIRECTORIO").Select
MsgBox "No se encontro el registro solicitado", , "RA, C.A."
Exit Do
End If
Loop
txtTelefono = Range("B" & fila).Value
txtDireccion = Range("C" & fila).Value
txtApellidoNombre.SetFocus
MsgBox "Documento encontrado en la fila " & fila & vbNewLine & "Presione borrar para una nueva consulta", vbInformation, "REGISTRO MM"
End Sub
El mismo consta de dos MsgBox los cuales funcionan bien, excepto por: cuando no encuentra el registro me lo indica en el primer MsgBox pero tambien me presenta el segundo indicando que el registro se encuentra en la ultima fila vacía.