Changing Values

G

Guest

Hi

I have a tick box on the clients form that gets ticked if they cease using
our service. What i require is that once they click the save command button
i require the active status to change to inactive if that box is ticked.

Is this possible

Thanks
 
G

Guest

I'm assuming you have a 'Status' control on your form?!

Simply use code similar to:

If Me.CheckboxName=True then
'Client ceased using your services
Me.StatusControlName="inactive"
Else
'Client still uses your services
Me.StatusControlName="active"
End If

This advise is based on many suppositions as you did not provide much detail
about your form... If you provide more info, such as control names, we could
help you better.

Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Field hidden until yes/no box ticked? 4
Greying out fields 6
Check Box to show on a report 1
making sure tick boxes are complete 3
AfterUpdate 5
Searching 2
Preserve setting in a check box 6
Check a CheckBox 6

Top