If I add this to a new column as a sanity check
=ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)
Then this to a new column
=IF(ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)=0,"Zero",IF(AND(ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)>-5,ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)<0),"Less 5",IF(AND(ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)>0,ROUND(SUMIFS([Amount],[Complex CC],[@[Complex CC]]),2)<5),"between zero and 5","Not between -5 and 5")))
It shows "Zero" for zero and "Not between -5 and 5" for everything else (which it should, because nothing else is between those numbers...)
The formula works for the criteria you have defined... are you defining the right criteria?
Bookmarks