Multiply the radio button value

Can you please give me some codes that can multiply the value of one radio button?

for example: I want to multiply the value of the radio button if i use a formula for choices like yes and no. the output must be look like this:

O yes O no

O yes O no

O yes O no

Can someone help me on this. You’re help is really appreciated.

Subject: RE: Multiply the radio button value

I don’t understand what you want. You would like one radio button field with the same choice appearing multiple times? So that in your example, the user could only select one out of the six selections? Or are you saying you want multiple radio button fields, each with the same set of choices, in which the user can select one choice out of each field?

You need to say more about why you’re doing this, whether you need a varying number of fields (not easy to do), whether this is a Notes or web application, and so on.

Subject: RE: Multiply the radio button value

It needs to be used on both notes and web application. The user needs to select 3 out of 6 selections. Is this possible on lotus notes?

sample of java script code:

for(i=0; i<5; i++) {

var option = “Option” + i;

document.write(“yes”);

document.write(“no
”);

}

Thank you for your respose regarding this matter.

Subject: RE: Multiply the radio button value

Nothing you’ve said so far rules out the obvious solution, viz: create one field, copy it to the clipboard, then paste it however many times you need.

You need to say more about why you’re doing this. Do you need a varying number of fields? There is not a way to plug in a variable value when they compose a document and just run off as many copies of a field as you need.

How do you know how many you need? When is this number established? Is there a maximum number? What’s the user requirement you’re trying to support by doing this? What are you trying to accomplish?

Do you need to be able to read the values and do something with them, or is it enough if someone opening the document can see what values have been selected? There are different ways to do this sort of thing, some much easier than others, depending on your constraints.