Hi,
I am trying to sum up all the positive numbers of the search
each column has a identifier and it should add up positive weight of the identifiers in the same group.
example.
cell 1 +3,boy
cell 2 -2, boy
cell 3 +1, boy
cell 4 +3, girl
if the identifier is boy
then it should add up only the positive values of boy which is 3 and 1 = 4
but my function includes the -2 into the summation.
any help will be appreciated
thanks
=SUM(IF((IF(ISNUMBER(FIND(BA$8,$AV11,1)),LEFT($AV11,2),0))>0,LEFT($AV11,2),0),
IF((IF(ISNUMBER(FIND(BA$8,$AW11,1)),LEFT($AW11,2),0))>0,LEFT($AW11,2),0),
IF((IF(ISNUMBER(FIND(BA$8,$AX11,1)),LEFT($AX11,2),0))>0,LEFT($AX11,2),0),
IF((IF(ISNUMBER(FIND(BA$8,$AX11,1)),LEFT($AY11,2),0))>0,LEFT($AY11,2),0),0)
Bookmarks