Change the value of Radio Button

Hello All,I have a radio button field :Overview: having YES|NO options.I have another field called :Submit: which is a dialoglist.If a value starting with ‘STAR’ is selected from dialoglist,Based on the value selected from dialoglist my radio button value needs to be changed

This entire process needs to be done when clicked on ‘Test’ action button.

As iam a fresher and iam new to this technology.Can anyone help me to do this.Thanks in Advance!!!

Subject: Change the value of Radio Button

I have another field called :Submit: which is a dialoglist.If a value starting with ‘STAR’ is selected from dialoglist,Based on the value selected from dialoglist my radio button value needs to be changed

Can you give an example of what value you’d select and what the radio button is to change to?

This entire process needs to be done when clicked on ‘Test’ action button.

What is this ‘test’ button? What code is in it and what’s it supposed to do? How does this button relate to your two fields?

More detail would be helpful.

Also, is this client or web?

Subject: RE: Change the value of Radio Button

Hi Doug, This is a client application.‘Submit’ is a Dialoglist field.If the selected value from dialoglist is having ‘TAR’ at the beginning of the value,then the radio button value needs to Yes.The Test button performs a save functionality.I just want to know the process of doing this.I havent implemeted this till now.Iam a graduate hire and am new to this technology.

Subject: Change the value of Radio Button

Put an Input Translation formula on the Overview field, something along the lines of this:

@If( @Left( Submit; 4 ) = “STAR”; “YES”; Overview )

This will change the value of the Overview field to YES if the Submit field begins with STAR.

OR you can put the field value assignment into your Test action button itself using something along the lines of:

FIELD Overview := @If( @Left( Submit; 4 ) = “STAR”; “YES”; Overview )