Forum Discussion
31moons
Aug 25, 2020Copper Contributor
Minus cells if other cells equal
I'm trying do the following and it's not working.
If cells X2:X30
"<>CLSD"
Then AI2-S2
This formula is not working:
=SUMIF(X2:X30,"<>CLSD",AI2-S2)
- I got it! Instead of doing a range of cells. I focused on one cell and used the IF function.IF(X2="CLSD",AI2-S2,0)Thank you everyone!!!
8 Replies
- 31moonsCopper ContributorI got it! Instead of doing a range of cells. I focused on one cell and used the IF function.IF(X2="CLSD",AI2-S2,0)Thank you everyone!!!
- SergeiBaklanDiamond Contributor
Depends on your needs, but to sum on entire range
it could be
=SUMPRODUCT((X2:X30="CLSD")*(AI2:AI30-S2:S30))- 31moonsCopper Contributor
SergeiBaklan This worked too. Thank you! Thank you!
- wumoladSteel Contributor
You need to change the syntax
SUMIF(X2:X30,"<>"&CLSD,AI2-S2)
I am not sure what you have in each cell though.
Cheers
- 31moonsCopper Contributor
Cells X2:X30 contain text
Cells A12 and S2 contain currency
I try to minus two cells only if the other cell contains "CLSD"
I tried your suggestion but it did not work.