tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
Assume I have this data:
If I write:
I get the value of 4.
But if I had this data:
and I want to SUMIFS based on #N/A, eg:
I don't get the value of 4.
How would I do it
Thanks
Code:
1 a
2 b
3 a
10 d
If I write:
Code:
=SUMIFS(A:A, B:B. "a")
I get the value of 4.
But if I had this data:
Code:
1 #N/A
2 b
3 #N/A
10 d
and I want to SUMIFS based on #N/A, eg:
Code:
=SUMIFS(A:A, B:B, "#N/A")
I don't get the value of 4.
How would I do it
Thanks
Last edited: