Nested If Condition for a Text Range

Closed
Krishna - Jun 3, 2010 at 02:23 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 3, 2010 at 10:34 AM
Hello,

Hi,
My intension is to add the values of Column I whereever Column B value = A and Column E Value = Network of sheet1 and want this to be populated in a cell of Sheet2.
the Formula
IF(AND((`Unplanned'!B:B,"*A*"),(`Unplanned'!E:E,"*Network*")),SUM(`Unplanned'!I:I),""); Pelase Help

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Jun 3, 2010 at 10:34 AM
You can use SUMPRODUCT


=SUMPRODUCT( (B:B="A") * (E:E="Network") * (I:I))
0