Oct 20, 2008 #1 willsth Programmer Oct 3, 2008 33 GB I am trying to requery a total field which is on my Main Form, when I update a field on my sub-form. My code is .... Me.Total Billables.Requery however [Total Billables] is not in my sub-form. How do I reference it ???
I am trying to requery a total field which is on my Main Form, when I update a field on my sub-form. My code is .... Me.Total Billables.Requery however [Total Billables] is not in my sub-form. How do I reference it ???
Oct 20, 2008 #2 RuralGuy Technical User Jun 27, 2002 446 US This link should help with the syntax: http://www.mvps.org/access/forms/frm0031.htm RuralGuy (RG for short) aka Allan Bunch MS Access MVP acXP winXP Pro Please respond to this forum so all may benefit Upvote 0 Downvote
This link should help with the syntax: http://www.mvps.org/access/forms/frm0031.htm RuralGuy (RG for short) aka Allan Bunch MS Access MVP acXP winXP Pro Please respond to this forum so all may benefit
Oct 20, 2008 Thread starter #3 willsth Programmer Oct 3, 2008 33 GB Thanks for that seems to be sorted now !! Upvote 0 Downvote
Oct 20, 2008 #4 RuralGuy Technical User Jun 27, 2002 446 US Glad I could help. RuralGuy (RG for short) aka Allan Bunch MS Access MVP acXP winXP Pro Please respond to this forum so all may benefit Upvote 0 Downvote
Glad I could help. RuralGuy (RG for short) aka Allan Bunch MS Access MVP acXP winXP Pro Please respond to this forum so all may benefit
Oct 21, 2008 #5 PHV MIS Nov 8, 2002 53,708 FR In the AfterUpdate event procedure of the subform's control: Me.Parent.Form![Total Billables].Requery Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
In the AfterUpdate event procedure of the subform's control: Me.Parent.Form![Total Billables].Requery Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Oct 21, 2008 Thread starter #6 willsth Programmer Oct 3, 2008 33 GB Thanks I've sorted it now Upvote 0 Downvote