View Single Post
  #1  
Old February 10th, 2010, 10:32 PM posted to microsoft.public.access.forms
Little Penny[_3_]
external usenet poster
 
Posts: 21
Default Form\Sub Form SQL

I have four main tables in my database.

tbl_Table1 has a one to many relationship with table tbl_Table2,
tbl_Table3 and tbl_Table4. I also have a form who's record source is
loaded with

select * from tbl_Table1"

The form also has three sub forms for tbl_Table2, tbl_Table3 and
tbl_Table4. I created command buttons on two fields in table1 to
searches by criteria.

Form_frm_OperatorLogJobDataViewSQL.RecordSource = "select * from
tbl_Table1 where " & GCriteria

GCriteria = Forms![tbl_Table1ID]![cboSearchField] & " = " &
Forms![tbl_Table1 ID]![txtSearchString]


How can I do something similar but based on fields of one of the the
link tables. For example tbl_Table4

So my record source for the form would be Select From tbl_Table1
where field 1 in the linked table (tbl_Table4) = yellow

My goal is to use SQL

Hope this makes sense

Thanks



Little Penny