I am having problems with the below formula
it is skipping data that clearly is zero that is group by the Financial Complex. Do you have an idea why it may be doing this.
The formula needs to have the logic If the Financial Complex number, group them that are the same and look in their amounts column and find all that sum that are equal to Zero and mark them by saying Zero
=ROUND(SUMIFS([Amount],[Financial Complex],[@[Financial Complex]]),2)=0
Then the Second logic but saying now give me the sums that are >-5 (Which means -5,-4,-3,-2,-1) correct? and <5. So these values should all equal like -2.65 or 4.26 etc
=if(and(ROUND(SUMIFS([Amount],[Financial Complex],[@[Financial Complex]]),2)>-5,ROUND(SUMIFS([Amount],[Financial Complex],[@[Financial Complex]]),2)<0),"Less 5",if(and(ROUND(SUMIFS([Amount],[Financial Complex],[@[Financial Complex]]),2)>0,ROUND(SUMIFS([Amount],[Financial Complex],[@[Financial Complex]]),2)<5),"between zero and 5","Not between -5 and 5")
So i am aware that i probably need two formulas .
1. =0
2. >-5 and <5
Ex1.JPG
Here are the errors when i try to run the following formula as well ex2.JPG
Bookmarks