Better formula

jimblimm

Board Regular
Joined
May 11, 2012
Messages
219
Is there any way to make this formula shorter

=countifs('main data'!$bb$4:$bb$8500,0)+countifs('main data'!$bc$4:$bc$85001,0)+countifs('main data'!$bd$4:$bd$8500,0)+countifs('main data'!$bd$4:$bd$8500,0)
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

cyrilbrd

Well-known Member
Joined
Feb 2, 2012
Messages
4,095
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
why not:
=SUMPRODUCT(('main data'!$bb$4:$bb$8500=0) + (('main data'!$bc$4:$bc$8500=0) + ('main data'!$bd$4:$bd$8500=0) > 0))
or only =COUNTIF('main data'!$bb$4:$bd$8500,0)
 
Upvote 0

T. Valko

Well-known Member
Joined
May 9, 2009
Messages
16,623
Is there any way to make this formula shorter

=countifs('main data'!$bb$4:$bb$8500,0)+countifs('main data'!$bc$4:$bc$85001,0)+countifs('main data'!$bd$4:$bd$8500,0)+countifs('main data'!$bd$4:$bd$8500,0)
You're double counting column BD.

This is essentially what you're formula is doing:

=COUNTIF('main data'!$BB$4:$Bd$8500,0)

This is what I think you're wanting to do:

=COUNTIFS('main data'!$BB$4:$BB$8500,0,'main data'!$BC$4:$BC$8500,0,'main data'!$BD$4:$BD$8500,0,'main data'!$BE$4:$BE$8500,0)
 
Upvote 0

Forum statistics

Threads
1,195,630
Messages
6,010,780
Members
441,569
Latest member
PeggyLee

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
Top