Toggle function

  • Thread starter Thread starter Stuart
  • Start date Start date
S

Stuart

I am currently creating a sort of parametric model using Access. i have all
the calculations up and working, but i was wondering if there was a way of
creating a switch or toggle or something that would for me to click between
creating two different pricing scenarios?
Is this possible within Access?
 
Add a Toggle button to your form. In your calculation routine you can then
check for the toggle being True or False
If Forms![FormName]![ToggleName] = True Then
calculate one price
Else
calculate another
End if
 

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

Back
Top