rhettblaine
New Member
- Joined
- Oct 3, 2013
- Messages
- 29
- Office Version
- 365
- Platform
- Windows
Hello all,
I'm trying to count how many times two different values appear in the same row and return those results in the same row. My obvious go to was COUNTIFS but that only works when it's one criteria; once I add an additional Criteria it will return 0. I've tried using SUMPRODUCT but receive the same results.
I also did not create the data source (A1 to H4 in my example below) so I'm having to get creative (I1:L4) so that I can create graphs, etc.
Due to the sensitivity of the data, I cannot post an exact replica of my table.
I'm trying to count how many times two different values appear in the same row and return those results in the same row. My obvious go to was COUNTIFS but that only works when it's one criteria; once I add an additional Criteria it will return 0. I've tried using SUMPRODUCT but receive the same results.
I also did not create the data source (A1 to H4 in my example below) so I'm having to get creative (I1:L4) so that I can create graphs, etc.
Due to the sensitivity of the data, I cannot post an exact replica of my table.
A | B | C | D | E | F | G | H | I | J | K | L | |
1 | Customer | Order Date | Item 1 | Status 1 | Item 2 | Status 2 | Item 3 | Status 3 | T-Shirt | Pending | Delivered | Canceled |
2 | Customer 1 | Nov 4, 2022 | T-Shirt | Pending | Hoodie | Delivered | Hat | Canceled | 1 | 1 | 0 | 0 |
3 | Customer 2 | Nov 5, 2022 | T-Shirt | Delivered | T-Shirt | Pending | Hat | Pending | 2 | 1 | 1 | 0 |
4 | Customer 3 | Dec 12, 2022 | T-Shirt | Canceled | T-Shirt | Canceled | T-Shirt | Delivered | 1 | 0 | 1 | 2 |