Here is my situation: I have frmSiteInfo(tbl Site) which holds my main surveysite data, and within each Site, you can have Surveys (frmSurveyInfo/tblSurvey) (which is a subform of frmSiteInfo on a new Tab), and Transects (fTransects/tblTransect), also a subform of frmSiteInfo on a new tab.
The Transect data entered in fTransects is static for each individual site. There are always 8 transects per site.
Within each frmSurveyInfo, there is subform fSubDistanceDat a(tblDistanceDa ta), that stores the individual counts and other data collected at each of the Transects. There can multiple surveys at each of the 8 transects. All I want to do is populate a combo box on my fSubDistanceDat a with the Transect#s and ID's that were entered on my fTransect form, so I can keep all of the transect data linked to my distance data. The form is in dataset view.
I can set the row source for intTransectID on my fSubDistanceDat a form to tblTransectData .intTransectID and initially, it works fine. However, when I switch to a new Site, the combo box does not update. I have tried everything I can think of from requerying various forms, fields, combo boxes, creating recordsets, queries etc.
I know it is a bit confusing, trust me, but any help would be appreciated.
The Transect data entered in fTransects is static for each individual site. There are always 8 transects per site.
Within each frmSurveyInfo, there is subform fSubDistanceDat a(tblDistanceDa ta), that stores the individual counts and other data collected at each of the Transects. There can multiple surveys at each of the 8 transects. All I want to do is populate a combo box on my fSubDistanceDat a with the Transect#s and ID's that were entered on my fTransect form, so I can keep all of the transect data linked to my distance data. The form is in dataset view.
I can set the row source for intTransectID on my fSubDistanceDat a form to tblTransectData .intTransectID and initially, it works fine. However, when I switch to a new Site, the combo box does not update. I have tried everything I can think of from requerying various forms, fields, combo boxes, creating recordsets, queries etc.
I know it is a bit confusing, trust me, but any help would be appreciated.
Comment