Link to home
Start Free TrialLog in
Avatar of Jim Horn
Jim HornFlag for United States of America

asked on

How to do an is numeric within a SUMIF

Hi all

I have the below formula where the ISNUMBER parameter is not working.
=SUMIF($AA$6:$AA$10000, ISNUMBER($Z$6:$Z$100000),$Z$6:$Z$100000)

Question:  How to pull off a SUMIF where instead of testing the AA column for a specific string ("cash", "not paid"), test it to see if the corresponding AA cell is numeric?  (i.e. a check number)

Thanks in advance.
Jim
ASKER CERTIFIED SOLUTION
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jim Horn

ASKER

Changed A to AA, worked like a charm.  Thanks.
=SUMPRODUCT(ISNUMBER($AA$6:$AA$100000)+0,$Z$6:$Z$100000)