Toggle function

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?
 
D

Dennis

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
 
Top