Hi Rico,Did you get an answer on this? If not and you are using
JavaScript, try parseInt. My radio buttons are set to allow only one
selection per grouping, so I need to look for the rawValue of the radio
button list. E.G. you have 3 radio button lists, 1 named colours, 1
named cars, 1 named provinces, so the calculate script on your total
field (formatted as numeric) would look something like:this.rawValue =
parseInt(colours.rawValue) + parseInt(cars.rawValue) +
parseInt(provinces.rawValue);