Is there any means to parametrise a checkbox using data-driven?

Thanks Andrej,

I was able to get if and else work

Hi Andrej, on this example, how can i make katalon check two options and not only one

if(member == 1){
		WebUI.check(findTestObject('Object Repository/input_Choose your plan_members (1)'))
	} else if(member == 2)
	{
		WebUI.check(findTestObject('Object Repository/input_Choose your plan_members (2)'))
	} else if(member ==3)
	{
		WebUI.check(findTestObject('Object Repository/input_Choose your plan_members (3)'))
	}

which ones you want to check?

let say i have different customers name, on each name theres a checkbox aside, if i want to select more than one checkbox(customers), how would i do it

simply call WebUI.check() for all you are interested in … i don’t see any catch …
pictures, html will be big help if you want me to understand where problem is …

I think you can check the value of member. Print it into console using println(member)