Martinpetersson
New Member
- Joined
- Apr 27, 2022
- Messages
- 31
- Office Version
- 365
- Platform
- Windows
If excel wont find a match it will return "0" I don't want that.
Reason why I use sumifs is because I need to return a value with two criterias.
Are there any other formulas that I can use for returning a value based on two criterias?
I don't need to sum nothing because it's always only one cell value to return. But I Use sumifs because of the v-lookup didn't work with multiple criterias.
Thank you in advance.
Reason why I use sumifs is because I need to return a value with two criterias.
Are there any other formulas that I can use for returning a value based on two criterias?
I don't need to sum nothing because it's always only one cell value to return. But I Use sumifs because of the v-lookup didn't work with multiple criterias.
Thank you in advance.
Cell Formulas | ||
---|---|---|
Range | Formula | |
D3 | D3 | =SUMIFS('S-FORM'!$I:$I,'S-FORM'!$F:$F,"gul",'S-FORM'!$J:$J,A3) |
E3 | E3 | =SUMIFS('S-FORM'!$I:$I,'S-FORM'!$F:$F,"blå",'S-FORM'!$J:$J,A3) |
F3 | F3 | =SUMIFS('S-FORM'!$I:$I,'S-FORM'!$F:$F,"grön",'S-FORM'!$J:$J,A3) |
G3 | G3 | =D3+E3+F3 |