SUMPRODUCT to exclude certain words

Mehow

New Member
Joined
Feb 23, 2018
Messages
15
Hi All,

I'm trying to count all cells that contain any text + EXCLUDE certain words

I'm trying to exclude "BRK" and "SCK" and "HOL" from the range.

=SUMPRODUCT(--(T4:AS4<>""),--(T4:AS4<>"BRK"))/2
How do i also exclude "SCK" adding it to above formula?

http://prntscr.com/iiym5u < that's what it looks like now

Thanks,
Michal.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to the board.

Add in the extra conditions just like you did with BRK.

Like so:

=SUMPRODUCT(--(T4:AS4<>""),--(T4:AS4<>"BRK"),--(T4:AS4<>"SCK"),--(T4:AS4<>"HOL"))/2
 
Upvote 0
Hi
Welcome to the board

Try:

=SUMPRODUCT(--(T4:AS4<>""),--ISERROR(MATCH(T4:AS4,{"BRK","SCK","HOL"},0)))/2
 
Upvote 0
Works!

Thanks for the quick help and a warm welcome :) i'm catching up on the excel skills and hopefully will use this forum again and again!

Kind Regards,
Michal.
 
Upvote 0

Forum statistics

Threads
1,216,030
Messages
6,128,408
Members
449,448
Latest member
Andrew Slatter

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