Unbound Check Box

mixedguy

Registered User.
Local time
Today, 02:20
Joined
Jun 12, 2002
Messages
52
Help. I've created an Unbound Checkbox that I would liked to be checked when another textbox within the report has a value greater then 30.

For example:

IIf([Text101]>30, True,False)

This is what I've tried putting in the control source of the unbound check box and it gives me errors.

Thanks in advance!
 
Do it in the query and call and then put in on your form:

NewTextBox: IIf([Text101]>30, True,False)
 

Users who are viewing this thread

Back
Top Bottom