Countifs & Isnumber combo

BrutalLogiC

Active Member
Joined
Feb 26, 2006
Messages
274
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am trying to use ISNUMBER in a countifs formula and it's not working so appreciate if someone can help me out. It doesn't return an error but it's not counting the numeric values in column AM.

I had this formula:
=COUNTIFS(Master!$L:$L,Inhouse!$B5,Master!$AK:$AK,"yes",Master!$E:$E,"corporate")

but also wanted to count the number of numeric values in column AM so tried changing it to below which is not counting the values, it's returning 0.

=COUNTIFS(Master!$L:$L,Inhouse!$B5,Master!$AK:$AK,"yes",Master!$E:$E,"corporate",Master!AM:AM,isnumber=TRUE)

I hope above is enough information for someone to help me

thanks very much
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
You cannot do that with countifs, you need to use sumproduct instead
Excel Formula:
=SUMPRODUCT((Master!$L$2:$L$1000=$B5)*(Master!$AK$2:$AK$1000="yes")*(Master!$E$2:$E$1000="corporate")*(ISNUMBER(Master!$AM$2:$AM$1000)))
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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