Access Reference

Hide a subform if the main form contains no records

The following example illustrates how to hide a subform named _Orders_Subform_ if its main form does not contain any records. The code resides in the main form’s Current event procedure.

“`vb Private Sub Form_Current()

With Me![Orders_Subform].Form

‘ Check the RecordCount of the Subform. If .RecordsetClone.RecordCount = 0 Then

‘ Hide the subform. .Visible = False

End If End With End Sub “`

!include[Support and feedback]

6 community Q&A using Hide a subform if the main form contains no records

Libraries that work with Hide (5)

68 wordsMicrosoft Docs rev. 09/21/2018