Link to home
Start Free TrialLog in
Avatar of bail3yz
bail3yz

asked on

Excel formula question

is it possible to make a formula that checks a range A1:A100 for certain words.. and if that word is in a field.. itll add up the sum of all the B fields that have the word in field A?

for example if it looked like this.. it would return 6

Test          3
Test          2
kajdfa       9
adfjkadf    9
ajdfjda      8
Test          1

SOLUTION
Avatar of Ardhendu Sarangi
Ardhendu Sarangi
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
ASKER CERTIFIED SOLUTION
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 bail3yz
bail3yz

ASKER

Thanks!.. perfect

Like this - =SUMIF(E2:F7,"Test",F2:F7)

Assuming your data is in columns E and F, where E contains the words and F contains the values.