This Calculation field script would be hellaciously complex to write & to read! I'd like to know (not just you, but anybody, because it happens very often) why so many people use the now ancient Calculation field. It's got a few extra functions, but it's got so much of everything else that it's really, in my opinion, not wise for Memento users to keep finding & using this script rather than JavaScript. Again, this is not aimed at Paul specifically, but at everyone! If you use the databases more than a little bit, you'll end up having learned both languages.
So
Javascript field. Try this:
// Values used in the script. Only if you change your fee type names will you need to modify the script below
var feesField =
field("Replace this with your Radio Buttons field name";
var chipAddedFee = (2.6 / 100) * amountField + 0.10; // Keep up to date as time goes on
var manualAddedFee = (3.5 / 100) * amountField + 0.10;
// Keep up to date as time goes on
// Fees & their types
var feeToAdd = 0; // By default, no added fees. No need to check for "None".
if (feesField == "Chip")
chipAddedFee; // Returned value
else if (feesField == "Manual")
manualAddedFee; // Returned value
I didn't test it, so get back to us if you have an error.