Cómo condicionar campos tipo fecha?
Tengo dos campos tipo fecha.
Quiero que La fecha de expedición no sea mayor que la fecha actual Fecha(), me de algún aviso. Y además que al entrar la fecha de vencimiento la compare con la de expedición y me alerte en caso que sea menor.
Utilicé el siguiente código para lo segunto y me da un error. Para lo primero no he encontrado nada.. Saludos.
Dim strTblName As String, strValidRule As String Dim strValidText As String Dim intX As Integer strTblName = "Employees" strValidRule = "EndDate > StartDate" strValidText = "Enter an EndDate that is later than the StartDate." intX = SetTableValidation(strTblName, strValidRule, strValidText) Function SetTableValidation(strTblName As String, _ strValidRule As String, strValidText As String) _ As Integer Dim dbs As Database, tdf As TableDef Set dbs = CurrentDb Set tdf = dbs.TableDefs(strTblName) tdf.ValidationRule = strValidRule tdf.ValidationText = strValidText End Function
1 respuesta
Respuesta de Jacinto Trillo Jareño
1