Hi, I have a form that gets data from a table and i print these forms (about 3000). There is one field that i only want to print if the value is > 0. I have used If TotalStarSavings = 0 Then
Label654.Visible = False
TotalStarSavings.Visible = False
Else
Label654.Visible = True
TotalStarSavings.Visible = True
End If
These are single forms. Either it will print Label and Savings on all forms or sometimes on none. Any help will be appreciated.
Thanks,
NeilCh
Label654.Visible = False
TotalStarSavings.Visible = False
Else
Label654.Visible = True
TotalStarSavings.Visible = True
End If
These are single forms. Either it will print Label and Savings on all forms or sometimes on none. Any help will be appreciated.
Thanks,
NeilCh