D
davegh7
Hi there, I am working in a form where I would like to hide a field if
it is blank/null. I'm using:
If IsNull(Forms![LeasesTable]![Term2]) Then
Forms![LeasesTable]![Term2].Visible = False
Else: Forms![LeasesTable]![Term2].Visible = True
In this case, it would only hide the field if the first record was
blank. I'll have some fields blank and some will not.
it is blank/null. I'm using:
If IsNull(Forms![LeasesTable]![Term2]) Then
Forms![LeasesTable]![Term2].Visible = False
Else: Forms![LeasesTable]![Term2].Visible = True
In this case, it would only hide the field if the first record was
blank. I'll have some fields blank and some will not.