I'm trying to make the following code work.
It basically adds up the check boxes if there are ticked so that i can display in a text box "multi fields selceted"
am i using the right code? is there an easier way of doing this
Please help
It basically adds up the check boxes if there are ticked so that i can display in a text box "multi fields selceted"
am i using the right code? is there an easier way of doing this
Code:
Private Sub Ward_2_AfterUpdate()
Dim Multi_Count As Integer
Dim Sum_Count As Integer
Multi_Count = 0
Sum_Count = 0
If Ward_1 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_2 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_3 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_4 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_5 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_6 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_7 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
If Ward_8 = true Then
Multi_Count = Sum_Count + 1
Sum_Count = Multi_Count
End If
End If
End If
End If
End If
End If
End If
End If
If Multi_Count > 1 Then
Me.Multi_Ward = "multi fields selceted
Else
me.multi_ward = null
End If
End Sub
Last edited: