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

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
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
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,214,832
Messages
6,121,853
Members
449,051
Latest member
excelquestion515

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