May 13, 200223 yr Newbies I have set up a button (N=1 & Y=2) that a user will check if the "Billing Address" is different than the "Contact Address". Right now the button is in place but isn't linked to any type of functionality. That is where you all can help me. As the default, I would like the "Billing Address" fields to mirror the "Contact Address" and the button to be set to "N" - then based on the user actively selecting the button to "Y", the address fields would clear for the user to enter the new information. Any/all suggestions are welcome. I appreciate your help in advance. Thanks!
May 13, 200223 yr Hi, probably the best thing to do is place an invisible button on top of the Y/N radio field (lets call it fieldx). Then script this to do: If (fieldx="N") Set field [fieldx, "Y"] Set field [billing Address, ""] Else Set field [fieldx, "N"] Set field [billing Address, Contact Address] End If HTH
Create an account or sign in to comment