0
Server Type      Count
Enterprise        3
Standard          24
Enterprise Core   6

In Excel, I am looking for to check if server type (A2-A5) contains both 'Enterprise' and 'Enterprise Core' or just 'Enterprise'. If it contains both, then add the two numbers together, otherwise, just display the number for 'Enterprise'.

1
  • What if it contains "Enterprise Core" but not "Enterprise"? Commented Apr 14, 2015 at 16:02

2 Answers 2

1

Perhaps just this:

=SUMIF(A:A,"Enterprise",B:B)+SUMIF(A:A,"Enterprise Core",B:B)

If it doesn't have both .. then it'll only find one to add ..

Sign up to request clarification or add additional context in comments.

Comments

1
=SUMIF(A2:A5,"Enterprise*",B2:B5)

You can use the asterisk as a wildcard in sumif & countif.

1 Comment

re: Asterisk: Good point, I keep forgetting about that :) lol

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.