Table Lookup

  • Thread starter Thread starter Todd
  • Start date Start date
T

Todd

Hi, I have a table that I need to search for data.

I am trying to count the number of invoices (Column B) a
particular tech has (column A:A)

And trying to sum the dollar values a techs invoices equal.

How do I do this?


Ex.
Table A.

Tech Invoice# Invoice Amount
17 5555 2.32
18 5556 1.31
17 5557 5.62


Thanks


Todd
 
=SUMIF(A:A,"TechName",B:B)

You can replace TechName with a reference and put the name in the reference

=SUMIF(A:A,D1,B:B)
 

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

Similar Threads

Pivot Table newbie help.. 1
Pivot Table missing data item 1
Conditional Sum? 2
selecting values from a list to equal a given value 3
PIVOT TABLE ???? 2
True or False 3
Trying to do a Lookup 5
TRUE/FALSE 5

Back
Top