Some columns has this formula, the column type is decimal
IF(
AND(ISNOTBLANK([Porcentaje EP3]), ISNOTBLANK([Valor])),
[Porcentaje EP3] * [Valor],
' '
)
When editing a row, this formula returns zero, but I need it to return a blank cell instead of zero.
thanks