vasanthkumar1979
New Member
- Joined
- Aug 10, 2022
- Messages
- 5
- Office Version
- 2019
- Platform
- Windows
Dear Experts,
I need help in the attached excel sheet. I have a huge data where I need to filter particular status. I had put IF condition with "" value (=IF(E2="Open","1",IF(E2="WIP","1","")).
When I check the count, the total counts the blank cells too. The same issue happens in Pivot.
Any suggestion on how to get rid of blank cell?
I need help in the attached excel sheet. I have a huge data where I need to filter particular status. I had put IF condition with "" value (=IF(E2="Open","1",IF(E2="WIP","1","")).
When I check the count, the total counts the blank cells too. The same issue happens in Pivot.
Any suggestion on how to get rid of blank cell?
Test File.xlsx | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | |||
1 | Date | Priority | Issue Description | Ownership | Status | Aging | ||||||||
2 | 08-Aug-22 | High | Issue No.1 | A | Open | 1 | ||||||||
3 | 08-Aug-22 | High | Issue No.2 | B | Close | |||||||||
4 | 08-Aug-22 | High | Issue No.3 | C | WIP | 1 | ||||||||
5 | 08-Aug-22 | High | Issue No.4 | A | Open | 1 | Formula used | IF(E2="Open","1",IF(E2="WIP","1","")) | ||||||
6 | 08-Aug-22 | High | Issue No.5 | B | Close | |||||||||
7 | 08-Aug-22 | High | Issue No.6 | C | Close | CountA= | 9 | |||||||
8 | 08-Aug-22 | High | Issue No.7 | A | Open | 1 | ||||||||
9 | 08-Aug-22 | High | Issue No.8 | B | Close | I understand "" value will be counted. Is there any way the blank cell shoul not be counted while doing CountA? | ||||||||
10 | 08-Aug-22 | High | Issue No.9 | C | WIP | 1 | ||||||||
11 | 9 | |||||||||||||
12 | ||||||||||||||
13 | ||||||||||||||
14 | ||||||||||||||
15 | ||||||||||||||
16 | Count of Aging | Column Labels | ||||||||||||
17 | Row Labels | A | B | C | Grand Total | |||||||||
18 | Issue No.1 | 1 | 1 | |||||||||||
19 | Issue No.2 | 1 | 1 | |||||||||||
20 | Issue No.3 | 1 | 1 | |||||||||||
21 | Issue No.4 | 1 | 1 | |||||||||||
22 | Issue No.5 | 1 | 1 | |||||||||||
23 | Issue No.6 | 1 | 1 | |||||||||||
24 | Issue No.7 | 1 | 1 | |||||||||||
25 | Issue No.8 | 1 | 1 | |||||||||||
26 | Issue No.9 | 1 | 1 | |||||||||||
27 | Grand Total | 3 | 3 | 3 | 9 | |||||||||
28 | ||||||||||||||
29 | ||||||||||||||
Consolidated |
Cell Formulas | ||
---|---|---|
Range | Formula | |
F2:F10 | F2 | =IF(E2="Open","1",IF(E2="WIP","1","")) |
F11 | F11 | =COUNTA(F2:F10) |