And If???

petercummins

Registered User.
Local time
Today, 02:26
Joined
Sep 6, 2005
Messages
52
Is it possible to do something along the line of:-

if [combo box(1)] = "Y"
and if [combo box(2)] = "Y"
and if [combo box(3)] = "Y"
then
[Total] = "100"

Not sure if you can do it this way but im sure you guys will know a way round it!
 
Code:
If Me.combo box(1) = "Y" and Me.combo box(2) = "Y" and Me.combo box(3) = "Y" Then
Me.Total = 100

End If
 
Thanks Colin that worked a dream!
 

Users who are viewing this thread

Back
Top Bottom