Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I check that subform has no records ?

Forms

How do I check that subform has no records ?

by  WP  Posted    (Edited  )
The SQL recordset for the subform will be "SELECT * FROM subformTable WHERE childField='" & txtLinkFieldOnParent & "';"

Note I have assumed your link field is alpha-numeric and that there is only one link field.

So you just have to :

Dim rsSub as recordset
Dim strSQL as String

strsql="SELECT * FROM subform WHERE childField='" & txtLinkFieldOnParentForm & "';"

Set rsSub=Currentdb.openrecordset(strSQL)

Now to check for records :

If rsSub.RecordCount=0 then
Msgbox "No records"
Endif

rsSub.close

Set rsSub = Nothing
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top