Hi all,
I have a table as such below, I'm having some issues creating a formula that can do the following:
1. If Region = A
2. Count the number of blanks in that row for the columns
- Region
- Country
- Name
- Gender
- Weight
So for Region A, i should get back a value of 1 as the City column is not included in the count.
Is there a way to do this such that i dont have to use sumproduct? My actual data set has about 20 columns and it doesnt seem efficient to use sumproduct this way..
Thank you!
I have a table as such below, I'm having some issues creating a formula that can do the following:
1. If Region = A
2. Count the number of blanks in that row for the columns
- Region
- Country
- Name
- Gender
- Weight
So for Region A, i should get back a value of 1 as the City column is not included in the count.
Is there a way to do this such that i dont have to use sumproduct? My actual data set has about 20 columns and it doesnt seem efficient to use sumproduct this way..
Thank you!
Region | Country | City | Name | Gender | Weight |
A | ABC | X | Jane | F | |
B | DEF | Y | John | 80 | |
A | ABC | Mary | F | 50 |