Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two fields which have two options each. I want that a certain selection in the first field, will select automatically a specific selection in the other field.
For example:
Field 1 options: 'To Keep / To Drop
Field 2 options: Orders / Returns
If the user presses 'To Keep' , field 2 gets 'Orders' and if the user presses 'To Drop' , field 2 gets 'Returns'
Thank you very much,
Gili
Open the Document Properties window, go to the Triggers tab. Then select your Field 1. Click on the Add Action(s) button under the OnSelect option. Add a Select in Field action. Use Field 2 for the Field setting and as Search string the expression: =If(Only([Field 1]) = 'To Keep', 'Orders', If(Only([Field 1])='To Drop', 'Returns')). Replace [Field 1] with the case sensitive field name of your real field 1.
Hi,
Can you share your qvw file, so we can suggest a solution ?
Thx
I'm sorry, I cant..
Is there anything you didnt understand? I'll explain again.
Thanks
Open the Document Properties window, go to the Triggers tab. Then select your Field 1. Click on the Add Action(s) button under the OnSelect option. Add a Select in Field action. Use Field 2 for the Field setting and as Search string the expression: =If(Only([Field 1]) = 'To Keep', 'Orders', If(Only([Field 1])='To Drop', 'Returns')). Replace [Field 1] with the case sensitive field name of your real field 1.
Thank you so much!!