donwiss
Board Regular
- Joined
- Jul 5, 2020
- Messages
- 63
- Platform
- Windows
The expression in the falsepart of the iif is still being evaluated, and I believe is causing the error. How do I write this to get around the Null issue?
MatDate is a Text data type.
SQL:
SELECT FldrName,[Name],MatDate FROM Securities WHERE iif(IsNull(MatDate),True,DateValue(MatDate) < #10/19/2020#);
MatDate is a Text data type.