Forum Discussion
erin-5304
Apr 22, 2022Brass Contributor
Formula Trouble
Here is the situation: If E36:I36 are empty, then the cell stays blank; if E36:I36 add to greater than 5000, then that sum needs to multiply by .40 cents; if that sum is less than or equal to 500...
- Apr 22, 2022
mtarler
Apr 22, 2022Silver Contributor
your first IF() is a complete formula and then you added "," and more which isn't allowed. Try this:
= IFS(E36:I36="",0,SUM(E36:I36)<=5000,1500,TRUE,SUM(E36:I36)*J36)
= IFS(E36:I36="",0,SUM(E36:I36)<=5000,1500,TRUE,SUM(E36:I36)*J36)
- erin-5304Apr 22, 2022Brass ContributorIt looks like it is coming up with the correct answers, but it is populating a bunch of cells to the right with possible answers, it says #SPILL. How do I make sure it only shows the correct answer in one cell?
- SergeiBaklanApr 22, 2022Diamond Contributor
- erin-5304Apr 22, 2022Brass ContributorThis worked great! Thank you!