Hola, un saludo a todos y quiero agradecer el apoyo de ustedes con sus respuestas.
Estoy armando mi consulta ahi esta el codigo, pero al momento de ejecutar me manda error en la sintaxis de Like, espero alguien pueda ayudarme con este problemita.
Dim condicion As String
condicion = ""
If Trim(placa1) <> "" Then
condicion = condicion & "(NOMBRE Like '%" & placa1 & "%')and"
End If
If Trim(nombre1) <> "" Then
condicion = condicion & "(CALLE Like '%" & nombre1 & "%')and"
End If
If Len(condicion) Then
If Right(condicion, 4) = "and" Then
condicion = Left(condicion, Len(condicion) - 4)
End If
End If
Dim consulta1 As String
consulta1 = " SELECT * from ALUMNOS Where" & condicion