Countifs & Isnumber combo

BrutalLogiC

Active Member
Joined
Feb 26, 2006
Messages
267
Office Version
  1. 2016
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

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
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,215,586
Messages
6,125,686
Members
449,249
Latest member
ExcelMA

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