Hide empty table row in report

hanarina

Registered User.
Local time
Today, 14:12
Joined
Oct 29, 2012
Messages
14
Hi..

I need help with this problem.
I tried;

If subject.value = "" Then
Subject.Visible = False
End IF

but it didn't work~
Tq...
 

Attachments

  • Untitled1.jpg
    Untitled1.jpg
    101.7 KB · Views: 126
  • Untitled2.jpg
    Untitled2.jpg
    91.1 KB · Views: 121
Do your really mean to use "". That means an empty string or do you want the control to not be visible if the control is Null. There is a difference in Access.
Try
Code:
Is isNull(subject.value) then ....
 
Do your really mean to use "". That means an empty string or do you want the control to not be visible if the control is Null. There is a difference in Access.
Try
Code:
Is isNull(subject.value) then ....

I tried this code and the entire subject column is hidden. How to make empty row only to be hidden?
 

Users who are viewing this thread

Back
Top Bottom