Edit: Oops. I missed the table name "TermDate". A table name "TermDate" and a field named "TermDate".... confusing
"Field:" means what field are you trying to update?
"Update To" is what you want to the above field to?
So you should have;
Code:
"Field:" TermDate
"Table:" BH_Visit
"Update To:" Left(Right([Field2],4),2) & "/" & Right([Field2],2) & "/" & Left([Field2],4)
"Criteria:" Is Null
But even that formula is weird. If "Field2" is a text field and "TermDate" is a Date/Time field, I would use:
Code:
DateSerial(Left([Field2],4), Mid(Field2,5,2), Right(Field2,2))
If "TermDate" is a text field, I would use:
Code:
Mid(Field2,5,2) & "/" & Right(Field2,2) & "/" & Left([Field2],4)