HI when i use =SUM(CHILDREN()) it shows $0.00 value....I would like to hide this value until its greater than 0....probably easy....thanks
Not a problem! Just wrap this function in an IF-statement.
=IF(SUM(CHILDREN()) > 0, SUM(CHILDREN()), "")
Basically it first checks the sum to see if it's greater than 0. If it is, use that number. Otherwise, leave the cell blank.
I hope that helps!
brilliant....thanks greg