Why not in your calculation check for null in FR2 for example, then your run your calc if its not and set the field to null when FR2 is null. Something like
if ( ! FR2.isNull )
{
$.rawValue = FR2.rawValue + CR1.rawValue;
}
else
{
$.rawValue = null;
}
which would set the result field to empty rather than a zero. Setting a fields raw value to null, would basically be saying it has no value at the moment