vlookup and sum???

T

Tdp

I have the following:
cells A1:A15 has names (but can be blank)
Cells B1:B15 has values

How do I sum col B1:B15 values only if there are names in cells A1:A15.
 
B

Barb Reinhardt

How about something like this

=SUM(IF(LEN(A1:A15)>1,B1:B15))

Commit with CTRL SHIFT ENTER
 
B

Barb Reinhardt

Sorry, my original solution didn't work. Try this one

=SUM(IF(ISBLANK(A1:A15)=FALSE,B1:B15))
 
T

T. Valko

Here's another one...

This will sum only those entries that are text and excludes formula blanks
if they might be present:

=SUMIF(A1:A15,"?*",B1:B15)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top