I have a report that shows:
Dlr, Count_of_Delinq, Min Days, Max Days
It shows up fine. But what I'm trying to do is only show those with multiple counts.(leaving off the ones that have only 1 count.)
I've tried coding, here's what i have:
If txtTotalDays > 1 Then
txtTotalDays.Visible = True
Else
txtTotalDays.Visible = False
End If
Don't know if I am going in the right direction w/ coding.
Thanks in advance for the help.
Dlr, Count_of_Delinq, Min Days, Max Days
It shows up fine. But what I'm trying to do is only show those with multiple counts.(leaving off the ones that have only 1 count.)
I've tried coding, here's what i have:
If txtTotalDays > 1 Then
txtTotalDays.Visible = True
Else
txtTotalDays.Visible = False
End If
Don't know if I am going in the right direction w/ coding.
Thanks in advance for the help.