G
Gina K
I have a form with several subforms:
frmDataEntryGrp
has the subform
frmDataEntrySubGrp
which has the subform
frmTimeDESubGrp
which has the subform
frmTimeTestRank2
The frmTimeTestRank2 is based on a query that ranks the “Results†field on
my frmTimeDESubGrp. Once I have entered my results in the frmTimeDESubGrp
form, I click a button on that form to requery my frmTimeTestRank2, thereby
assigning data to a field called “rank†on the frmTimeTestRank2.
Private Sub cmdScoreEvent_Click()
DoCmd.Save
Forms!frmDataEntryGrp!frmDataEntrySubGrp!frmTimeDESubGrp!frmTimeTestRank2.Requery
End Sub
I’d like to then assign the value of the field “Rank†(from the
frmTimeTestRank2) to the “Place†field on frmTimeDESubGrp. I played around
with it and tried to add another line to my code to do just that, but I can’t
seem to get it to work. Any assistance would be greatly appreciated.
frmDataEntryGrp
has the subform
frmDataEntrySubGrp
which has the subform
frmTimeDESubGrp
which has the subform
frmTimeTestRank2
The frmTimeTestRank2 is based on a query that ranks the “Results†field on
my frmTimeDESubGrp. Once I have entered my results in the frmTimeDESubGrp
form, I click a button on that form to requery my frmTimeTestRank2, thereby
assigning data to a field called “rank†on the frmTimeTestRank2.
Private Sub cmdScoreEvent_Click()
DoCmd.Save
Forms!frmDataEntryGrp!frmDataEntrySubGrp!frmTimeDESubGrp!frmTimeTestRank2.Requery
End Sub
I’d like to then assign the value of the field “Rank†(from the
frmTimeTestRank2) to the “Place†field on frmTimeDESubGrp. I played around
with it and tried to add another line to my code to do just that, but I can’t
seem to get it to work. Any assistance would be greatly appreciated.