Link to home
Start Free TrialLog in
Avatar of route217
route217Flag for United Kingdom of Great Britain and Northern Ireland

asked on

sumproduct or sun if formula

Hi Experts

Need a formula to do the following:

Column A                         Column B                                Column C
England                             12                                           1

Look in column A if the text is england and the value in column c is 1 then return the same of the values in column B...
Avatar of Glowman
Glowman
Flag of United States of America image

I think this formula will work for you

=IF(AND(A2="England",C2=1),B2,"No Result")

happy coding
Avatar of route217

ASKER

hi experts
this does not give me the value in column b
ASKER CERTIFIED SOLUTION
Avatar of Glowman
Glowman
Flag of United States of America 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
sorry if I was not clear I want to show the value 12 in column d...
whichever cell you put that formula in should display the value in B if it meets the criteria.