USING COUNTIFS and LEFT TOGETHER

Simonc64

Active Member
Joined
Feb 15, 2007
Messages
251
Office Version
  1. 365
Does anyone have a solution to this?

For example =COUNTIFS(X:X,"=Y",A:A,"=1",LEFT(C:C,1),"s"))

This formula doesnt work, but explains my dilemma.

Any answers gratefully received!

Thanks in advance

Simon
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Hi Bryon thanks for the reply, I did try that but Excel still says theres an error with that formula.
 
Upvote 0
Use SUMPRODUCT instead

=SUMPRODUCT(--(D5:D21="A"),--(LEFT(E5:E21,3)="ABC"))

No need if you have COUNTIFS...

=COUNTIFS(D5:D21,"A",E5:E21,"ABC*")

which will be faster. Invoke SUMPRODUCT (or other kind of array-processing) when the references (ranges) require processing leading to array objects.
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,734
Members
452,939
Latest member
WCrawford

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