$w.onReady(() => {
const allRadiogroups = $w("RadioButtonGroup");
$w("RadioButtonGroup").onChange(event => {
const selectedIndexes = allRadiogroups.map(e => e.selectedIndex);
const numOfL = selectedIndexes.filter(e => e === 0).length;
const numOfE = selectedIndexes.filter(e => e === 1).length;
const numOfV = selectedIndexes.filter(e => e === 2).length;
$w("#text1").text = `Number of L is ${numOfL}`;
//etc..
})
});
Will try and let you know, thanks!!
Works Like Magic!!! Thanks a lot for your help!!
You’re welcome