The CreatorCon Call for Content is officially open! Get started here.

Select multiple boxes in Multiple choice variable.

asd22
Tera Contributor

Hello.

i have this multiple choice where i would like to be able to select more then just one box 

asd22_0-1692272404162.png

 How do i do this?

8 REPLIES 8

Samaksh Wani
Giga Sage

Hello @asd22 

 

Suppose there are 3 radio buttons :-

 

 

<input type="radio" id="age1" name="age" value="30">
  <label for="age1">0 - 30</label><br>
  <input type="radio" id="age2" name="age2" value="60">.   // name should be different
  <label for="age2">31 - 60</label><br>  
  <input type="radio" id="age3" name="age3" value="100">   // name should be different
  <label for="age3">61 - 100</label><br><br>

 

 

Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.

 

Regards,

Samaksh

Karthiga S
Kilo Sage

Hi @asd22 

 

Please find the below Link. It will help with your requirement.

https://www.covestic.com/blog/servicenow-tips-making-list-collectors-useful/ 

 

Please mark it Correct and Hit Like if you find this helpful!

 

Regards,

Karthiga

asd22
Tera Contributor

this link does not work

Hello @asd22 

 

Have you tried my solution.