Help with Formula

B

berniewind

Here is what I want to do. I have numbers in column A and I have text and
blanks in column B. I want to know the sum of the numbers in column A that
have text in coumn B.
 
D

Don Guillett

Try this. Will not sum if col a is blank or has a number

=SUMPRODUCT(((ISTEXT(A2:A22)*(LEN(TRIM(A2:A22))>0)*B2:B22)))
 
B

berniewind

Column A has number in the cells and column B has text in some of the cells.
I want to sum the number in Column A if they have text in Column B on the
same row.
 
J

JasonP CCTM LV

I am betting someone will come up with somthing easier, but I came up with
this formula with 4 sets of data for a total of 7 (see the data below):

=SUM(IF(B5="",0,A5),IF(B6="",0,A6),IF(B7="",0,A7),IF(B8="",0,A8))

extend it out for as many as you need.

Col A Col B
1 John
2 Katie
3
4 Kieth
7
 
Top