If any one of the Tax amount is NULL then the entire output of the formula sets to ZERO.
I have found an alternate by having six formulae i.e for each tax like,
Tax1:
if isnull ({TAX_CALC.TAX_AMOUNT1}) then 0
else
{TAX_CALC.TAX_AMOUNT1}
.
.
.
Tax6:
if isnull ({TAX_CALC.TAX_AMOUNT6}) then 0
else
{TAX_CALC.TAX_AMOUNT6}
and then finally have a formula to add all these formulae
like Total tax = Tax1+Tax2+Tax3+Tax4+Tax5+Tax6....
but I need a single formula to solve this...