Testing for records or no records

Cookiewl

New member
Local time
Yesterday, 23:40
Joined
Nov 29, 2012
Messages
3
I have a form with one subform. I want to test the subform for records after I update the Master Form. Such As:
If Me.subform is Null Then
do this
Else
End If
I've tried If is Null *** and If Not Empty*** what is the proper syntax? I know I've done it before.
Please help....
 
You could try Me.yourSubFormName.Form.RecordsetClone.RecordCount
 
Thanks! That works just fine.
 

Users who are viewing this thread

Back
Top Bottom