Hello, I have a simple If statement for the Details On Format. Please see example below:
If Me.SegmentID>1 Then
Me.Description.Visible=False
Else
Me.Description.Visible=True
End If
It worked just fine, until I added RecordCount field for additional validation. Now, the If statement always jumps to Else, even if the statement is true.
If Me.SegmentID>1 Then
Me.Description.Visible=False
Else
Me.Description.Visible=True
End If
It worked just fine, until I added RecordCount field for additional validation. Now, the If statement always jumps to Else, even if the statement is true.