These formulas both work in separate Columns, however when I try to use them together in one row/column I get "Incorrect Argument". I would like to get rid of the Balanced? Column and just have the Over/Under. So if columns One+Two+Three+Four are Equal to Grand Total, I would like the Over/Under Column to say Balanced.
These each work separately:
=IF([Grand Total]@row > [One]@row + [Two]@row + [Three]@row + [Four]@row, "UNDER", "OVER")
=IF([Grand Total]@row = [One]@row + [Two]@row + [Three]@row + [Four]@row, "BALANCED")
This is what is giving me the Incorrect Argument or Unparseable:
=IF([Grand Total]@row > [One]@row + [Two]@row + [Three]@row + [Four]@row, "UNDER", "OVER"), IF([Grand Total]@row = [One]@row + [Two]@row + [Three]@row + [Four]@row, "BALANCED"))