Darren_workforce
Board Regular
- Joined
- Oct 13, 2022
- Messages
- 146
- Office Version
- 365
- Platform
- Windows
Hello,
Column i has a macro that I grabbed online to count colored cells. For the purposes of this inquiry, I believe it's irrelevant but let me know if it will help. C:G results come from a replication formula (see C2 below reference for example). However, Column H are all manually data entered names with no formulas.
My formulas in K do not appear to be counting accurately. I've tried the below formulas and also attempted to use COUNTBLANK formulas but no matter what, it's not adding correctly. What I'd like is to have K tally up the number of names that are returned from both the IF(ISBLANK...) formulas as well as the data entered cells in H while at the same time, ignoring the blank cells that did not return a name. Once it adds up the number of names that appear, it then adds that total to the total from the above cell for a running total. K2:K4 are correct but Row 5 is where the calculation begins to go astray. Any help is greatly appreciated.
C2 formula:
K2 formula:
K3 formula:
Column i has a macro that I grabbed online to count colored cells. For the purposes of this inquiry, I believe it's irrelevant but let me know if it will help. C:G results come from a replication formula (see C2 below reference for example). However, Column H are all manually data entered names with no formulas.
My formulas in K do not appear to be counting accurately. I've tried the below formulas and also attempted to use COUNTBLANK formulas but no matter what, it's not adding correctly. What I'd like is to have K tally up the number of names that are returned from both the IF(ISBLANK...) formulas as well as the data entered cells in H while at the same time, ignoring the blank cells that did not return a name. Once it adds up the number of names that appear, it then adds that total to the total from the above cell for a running total. K2:K4 are correct but Row 5 is where the calculation begins to go astray. Any help is greatly appreciated.
C2 formula:
Excel Formula:
=IF(ISBLANK(M7),"",M7)]
Excel Formula:
=(COUNTA(C2:H2)-COUNTIF(C2:H2,""))
Excel Formula:
=(COUNTA(C3:H3)-COUNTIF(C3:H3,""))+K2
A | B | C | D | E | F | G | H | I | J | K | ||
1 | Day | Date | Agents | Running Rep Count | Compliant % | returned results | should be: | |||||
2 | M | 5/6/2024 | Haley | Debbie | Mary | Sarah | Charles | 4 | / | 5 | 5 | |
3 | T | 5/7/2024 | Dan | Michelle | Max | Elizabeth | 4 | / | 9 | 9 | ||
4 | W | 5/8/2024 | Ryan | Robin | Brittany | Shelley | 4 | / | 13 | 13 | ||
5 | R | 5/9/2024 | Terrance | Jennifer | Whitney | Alice | 4 | / | 16 | 17 | ||
6 | F | 5/10/2024 | Gary | Alex | Kim | Wanda | Lisa | 4 | / | 20 | 22 |
Last edited: