Pls help; I suppose following would be the right code to hide an empty control (TestMethod) but its not working; I checked by making a query- When I put a criteria IsNull the field is removed from the query results which means that the empty fields are actually "Null"; I tried using some existing values of the field test method- it works e.g when I substituted Null with "Slide Method" all entries containing "slide method" are removed/Hidden.
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If Me.TestMethod = Null Then Me.TestMethod.Visible = False End If End Sub
Comment