Reputation: 1328
I have a main form with only 1 field, in a combo box. I have a subform linked to the main form on that field. The logic is all working fine - when I select an item from the main form I get the correct results in the subform.
The problem I have is the appearance of the form. I wanted both the form and sub form to be visible all the time. Instead, I get only the main form, with a "+" next to each record. Selecting the "+" then pops up the appropriately filtered subform.
I cannot find any menu selection s that are driving this format or allow me to change it to what I want.
Upvotes: 0
Views: 163
Reputation: 12245
To have the subdatasheet always expanded by default you can set the Subdatasheet Expanded
(in the Format options) property to yes
.
Upvotes: 1