This subform will not change no matter what I do except closing and opening the form. AfterUpdate of text box "AdmOver" set recordsource of subform "AdmOTicketVar" to it's underlying query "Adm+TicketVar" (Yes I know the plus sign is a huge mistake in naming but I'm kind of locked into it now and it does work as long as I'm careful and use brackets or quotes.)
Then requery the subform object. The object has the same name as the actual subform, AdmOTicketVar.
Some things I've done have made the subform flicker a little, so I guess it's requerying, but the actual calculations in it won't update for anything.
Code:
Private Sub AdmOver_AfterUpdate()
Forms![AdmOSalesEntry]![AdmOTicketVar].Form.RecordSource = "Adm+TicketVar"
Forms![AdmOSalesEntry]![AdmOTicketVar].Requery
End Sub
All these codes I lift from other forums/questions and none of them work. What am I doing wrong?