I have a form that the Users filter on by using "Filter By Form". On the form are command buttons to open reports using the "Filter By Form" filter. Simple code is:
DoCmd.OpenReport "<Report>", , , Me.Filter
However, there are cbo's on the form with lookups that mess this up. Are there any ways around this, or do I have to convert fields in my main table from the primary key integer from the lookup table to the actual text name?
DoCmd.OpenReport "<Report>", , , Me.Filter
However, there are cbo's on the form with lookups that mess this up. Are there any ways around this, or do I have to convert fields in my main table from the primary key integer from the lookup table to the actual text name?