Filtrar elementos utilizando una variable
Use valores de variables como parte de un filtro en la sintaxis de Microsoft Jet o en la sintaxis de búsqueda y localización de DAV (DASL). En el ejemplo siguiente se ilustra el uso de variables como parte de un filtro:
fullname = "Dan Wilson"
' This approach uses Chr(34) to delimit the value.
criteria = "[FullName] = " & Chr(34) & fullname _ & Chr(34)
' This approach uses the double quotation mark to delimit the value.
criteria = "[FullName] = """ & fullname & """"
' This approach uses the escaped hexadecimal value of the double quotation mark to delimit the value.
criteria = "[FullName] = "%22" & fullname & "%22""
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.