I have a form name “proposals” I have a command button that opens up a formcalled “service”
I would like when I click the command button that when theform “service” opens then is will auto fill the fields “Proposal” based onfollowing
Field “optionOne” and field OptionTwo they are both yes/noand I have it set up so that only on can be yes. Each has it own Proposal field . So which ever option is yes that is theproposal that I want to show on the form service under proposal.
IIf me.optionOne = true then
Forms[service]![proposal] = proposalOne
Else
Me.optionsTwo = true then
Forms[service]![proposal]= proposalTwo
End IIF