How do I requery a subform linked to an unbound control on the main form? This unbound control contains the PK for the record they lookup. Since I'm not interested in binding the main form to a table I need to do it via VBA.
[ClosedLoans] = main form, unbound
[ClosedLoanNote] = sub form, bound to SS table
None of these have worked:
[Forms]![ClosedLoans]![ClosedLoanNote].Form.Requery
[Forms]![ClosedLoans]![ClosedLoanNote].Requery
Me!ClosedLoanNote.Form.Requer
Me![ClosedLoans]!Form.Requery
Me.Refresh 'On the main form
Me.Requery 'On the main form
[Forms]![ClosedLoans]![ClosedLoanNote].Form.Requerythis should work perfectly. You can also tryMe.ClosedLoanNote.Form.Requery. - Harun24HR