Combining Countifs Multiple Functions

Harry_1989

New Member
Joined
Sep 7, 2015
Messages
28
HI All,

I am stuck in below while combining count ifs function.

I have 7 count ifs function which are linked to 7 different variable, my target is when user select different dropdown from 7 variable availibles, data should refresh.

Example of dropdown providing just 3 for example
1) Location (Mumbai and New-york)
2) Process (HR, Finance, Marketing)
3) Gender ( Male, Female)

Now i need this data for creating funnel:
1) Footfall : Created countifs formula for locationwise separate, proceesswise separte and genderwise separate with no conditions (Wanted to combine all 3countifs function when user select location, process or gender, count will change)

2) HR select:Created countifs formula for locationwise separate, proceesswise separte and genderwise separate with Hr select status in Column S (Wanted to combine all 3countifs function when user select location, process or gender, count will change for HR select)

3) Assessment Select: Created countifs formula for locationwise separate, proceesswise separte and genderwise separate with assessment Select status in Column T (Wanted to combine all 3countifs function when user select location, process or gender, count will change for assessment select)

4)Ops Select: Created countifs formula for locationwise separate, proceesswise separte and genderwise separetly with Ops Select status in Column U (Wanted to combine all 3countifs function when user select location, process or gender, count will change for ops select)

5) Final Select: Created countifs formula for locationwise separate, proceesswise separte and genderwise separetly with final select in column V Wanted to combine all 3countifs function when user select location, process or gender, count will change for Final select)

I have created 3 count ifs for each stage, wanted to combine or else how i combine below formula.

=IF($L$3="All",COUNTIF(DataSheet!$BH$2:$BH$100002,"<>"),COUNTIF(DataSheet!$BH$2:$BH$100002,$L$3))

=IF($L$4="All",COUNTIF(DataSheet!$E$2:$E$100002,"<>"),COUNTIF(DataSheet!$E$2:$E$100002,$L$4))

=IF($L$5="All",COUNTIF(DataSheet!$Z$2:$Z$100002,"<>"),COUNTIF(DataSheet!$Z$2:$Z$100002,$L$5))

L is dropdown cell.

Thanks
Harry Singh
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Maybe:

=COUNTIFS($BH$2:$BH$100002,IF($L$3="All","<>",$L$3),$E$2:$E$100002,IF($L$4="All","<>",$L$4),$Z$2:$Z$100002,IF($L$5="All","<>",$L$5))
 
Upvote 0

Forum statistics

Threads
1,213,544
Messages
6,114,239
Members
448,555
Latest member
RobertJones1986

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top