Hi,
I’ll add this to the setfield functionality in the next release (with a “sum:” prefix), but in the meantime you must use a custom function like this:
function customCalc(){
var a = getFieldValue("YOUR_SOURCE_FIELD_NAME");
var b = parseFloat(a) + 1;
setFieldValue("YOUR_TARGET_FIELD_NAME",b);
}