Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I train people in ACCESS. I make sure they know about these forums, give them some training on how to use the site, and have a shortcut to it on their PC's..."

Geography

Where in the world do Tek-Tips members come from?
MysticMan (TechnicalUser)
14 Mar 00 2:05
I have created a form that includes calculations. I need to be able to test a check box field value (i.e. true or false, 0 or 1)to include in an If formula. For example,
{If (check1 = true, {=text1*3}, {=text1*2})}
The If statement works by checking the value of a text field or a dropdown field presumably because there is actual text to compare:
({If (text1 = "Yes", {=text1*3}, {=text1*2})})
I'm not sure why I can't get the check box field value to work. Any thoughts?
Thanks
Helpful Member!  DougP (MIS)
14 Mar 00 10:16
I little known fact about VBA is
True = Yes = -1
False = No = 0

Try any of these to see it that will work.

In Access and VB you refer to a Checkbox like so

IF Check1.Value = -1 then
' The check box is checked
ElseIf Check1.Value = 0 then
' Not checked
End IF

Not sure if Word is the same way.

DougP
dposton@universal1.com

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close