View Full Version : How do you skip fields based on input in another field?


SomeGuy
10-11-2000, 10:18 PM
I have a form that requires financial information. If no funds have been administered ($0.00), I would like it to skip a bunch of fields and go onto another section.

How can I do this? I tried the gotoControl command in the VBA window but I am not very good at this yet and I have failed miserably.
Please help!

Jack Cowley
10-12-2000, 06:33 PM
If Me![Funds] = 0 Then Me![ControlToGoTo].SetFocus

SomeGuy
10-13-2000, 02:42 PM
Thanks!