thestranger66
New Member
- Joined
- Nov 11, 2015
- Messages
- 22
Hi Everyone,
I have a tricky one here that I will do my best to explain. I have multiple columns of data where the rows are entirely filled in, partially filled in, or completely blank. My original goal was to count each row that was not entirely blank.
An example like this:
iiiiA B C
1 X X X
2 iiiiX X
3
4 X
Should yield a result of 3.
I managed to adopt a function from ExcelXOR.net that helped me solve this issue which you can find here:
https://excelxor.com/2015/03/30/counting-rows-where-at-least-one-condition-is-met/
My function looks like this: {=SUM(N(MMULT(N(F41:L252<>""),TRANSPOSE(COLUMN(F41:L252)^0))>0))}, where my range of interest is F41:L252.
I need to modify the above function so that it responds to me filtering my range of interest. I have no idea how to incorporate this enhancement. I assume it will have something to do with the subtotal function, but have been unable to make any progress.
Thanks in advance to anyone who takes a look at this issue!
-Steve
I have a tricky one here that I will do my best to explain. I have multiple columns of data where the rows are entirely filled in, partially filled in, or completely blank. My original goal was to count each row that was not entirely blank.
An example like this:
iiiiA B C
1 X X X
2 iiiiX X
3
4 X
Should yield a result of 3.
I managed to adopt a function from ExcelXOR.net that helped me solve this issue which you can find here:
https://excelxor.com/2015/03/30/counting-rows-where-at-least-one-condition-is-met/
My function looks like this: {=SUM(N(MMULT(N(F41:L252<>""),TRANSPOSE(COLUMN(F41:L252)^0))>0))}, where my range of interest is F41:L252.
I need to modify the above function so that it responds to me filtering my range of interest. I have no idea how to incorporate this enhancement. I assume it will have something to do with the subtotal function, but have been unable to make any progress.
Thanks in advance to anyone who takes a look at this issue!
-Steve
Last edited: