Property field : Valid if

habiler

Registered User.
Local time
Today, 17:17
Joined
Aug 10, 2014
Messages
70
Hello every,

I would wish to know how to put a condition in the property field : valid if .

I have 2 fields date [begin] and [end].

I would that [end] cannot be lower or equal at [begin]. I tried
Code:
>= [begin]
but I receive a fault.

Thaks

Habiler
 
>=Nz([begin], 0)
 
It doesn't work.

Syntax error.

Thks

Habiler
 
Hello every,

I would wish to know how to put a condition in the property field : valid if .

I have 2 fields date [begin] and [end].

I would that [end] cannot be lower or equal at [begin]. I tried
Code:
>= [begin]
but I receive a fault.

Thaks

Habiler

You cannot use "[end]" as a field name because it is an Access reserved word. Choose another name!

Best,
Jiri
 
in fact the field is named [fin] in french.

Kr

Habiler
 
if it doesnt work then use the form's control name.
 

Users who are viewing this thread

Back
Top Bottom