Is there a way to to check for a null value in a custom dialog box/pop-up form and assign default values if that is the case? I want to do this as criteria in a query field.
Use this as an example of the SQL for a query to populate your popup form:
Select A.*, IIF(IsNull(A.YourFieldName), default value, A.YourFieldName) as YourFieldName
FROM tblYourTableName as A;
Bob Scriver Want the best answers? See FAQ181-2886 Nobody believes the official spokesman... but everybody trusts an unidentified source.
Author, Bagdad Bob???
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.