Solved control source textbox problem,

SalmanZeiad

Member
Local time
Today, 14:49
Joined
Oct 30, 2017
Messages
112
e.x...

=IIf("[date3] =date()";"OK") & ("[date3]=""";"NotOK")
 
What are you trying to achieve - that syntax makes no sense? It should be

IIf( Logical Comparison , Result if True , Result if False)

Note they are separated by comma's no quotes or semicolons.
 
=Switch(IsNull([date3]), "NotOK", [date3]=Date(), "OK", True, "NotOK")
 

Users who are viewing this thread

Back
Top Bottom