Am I crazy or does the ISERROR function not work the same in Access as it does in Excel? I have a linked table with 2 columns of dates. if column 1 is blank, the source code that populates the linked tables returns 00/00/0000. Of course when I link it, the date/time format returns a #NUM! error. I tried to write a formula that basically said if there an error on column1, return what’s in column2. Thought it would be simple, but the ISERROR function doesn’t return a true/false statement. It returns the same error. Am I doing something wrong here?
Expr2: IIf(IsError([DATE LAST IN]),[DATE CREATE],[DATE LAST IN])