Propiedad Validation.ErrorTitle (Excel)

Devuelve o establece el título del cuadro de diálogo de error asociado a la validación de datos. String de lectura y escritura.

Sintaxis

expresión. ErrorTitle

Expresión Variable que representa un objeto Validation .

Ejemplo:

En este ejemplo, se agrega validación de datos a la celda E5.

With Range("e5").Validation 
 .Add xlValidateWholeNumber, _ 
 xlValidAlertInformation, xlBetween, "5", "10" 
 .InputTitle = "Integers" 
 .ErrorTitle = "Integers" 
 .InputMessage = "Enter an integer from five to ten" 
 .ErrorMessage = "You must enter a number from five to ten" 
End With

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.