I have a main form which has a button to View one of the Reports related to my primary table.
The View Report works fine.
On close of the Report the program returns to the Main form, and it returns to the record of the Report that was viewed with all of the data for that record showing in all of the Fields, except the Combo Box that I use to look up a record, it is blank.
Other than that, the Look Up Combo Box works fine.
How do I get the Look Up Combo Box to show the information for that look up field.
In the On Close item for the Report I have the following code to get back to the record I want to return to.
Private Sub Report_Close()
DoCmd.OpenForm "ENLARGED PROP INFO", , , "[Name]='" & Me![Name] & "'"
End Sub
Any suggestions?
Hope this makes some sense.
Robert2150