Link to home
Start Free TrialLog in
Avatar of johnmadigan
johnmadiganFlag for United States of America

asked on

ms access .[Column] refresh in subform datasheet

I have a main form with a subform that has a combo box in the subform.  A few of the fileds reference the combo box  - - -  =[ProductSupPtsID].[column](2).

When I open the form the data in the fields with the references do not show up.  If I manually click on the field it will show up.

Is there a way to get these fields to refresh so they will show up when the form opens?

Thanks for your help.
Avatar of DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
Flag of United States of America image

Try this in the Form Load event

Private Sub Form_Load()
    Me.ReCalc  
End Sub

mx

ASKER CERTIFIED SOLUTION
Avatar of DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial