Is there a way for in the else part of the code to have 2 things happen?
I have this:
If Me.Family = "1" Then
Me.FamPoints = "3"
ElseIf Me.Family = "2" Then
Me.FamPoints = "2"
ElseIf Me.Family = "3" Then
Me.FamPoints = "1"
ElseIf Me.Family = "4" Then
Me.FamPoints = "0"
ElseIf Me.Family = "4" Then
Me.FamOther.Visible = True
This isn't making the FamOther visable. Is there a way to combine the last 2 lines in 1 so if me.Family = "4" then FamPoints = "0" AND FamOther becomes visable? Or am I doing it right just need to figure out why it's not visable?
Thanks in advance,
Rick
I have this:
If Me.Family = "1" Then
Me.FamPoints = "3"
ElseIf Me.Family = "2" Then
Me.FamPoints = "2"
ElseIf Me.Family = "3" Then
Me.FamPoints = "1"
ElseIf Me.Family = "4" Then
Me.FamPoints = "0"
ElseIf Me.Family = "4" Then
Me.FamOther.Visible = True
This isn't making the FamOther visable. Is there a way to combine the last 2 lines in 1 so if me.Family = "4" then FamPoints = "0" AND FamOther becomes visable? Or am I doing it right just need to figure out why it's not visable?
Thanks in advance,
Rick