|
Re: How to combine count and VLOOKUP??
I'm thinking that you want to see the count for ALL of the numbers in "Contract", regardless of whether they show up on "AllCollections"
If that is the case, you can Copy Column B from "Contract" into Column A in "Analysis" then put this formula in Column B in "Analysis":
=COUNTIF(AllCollections!I:I,Analysis!A4)
You can fill this formula down to the end of your list.
The countif statement will count how many times it sees the number from Column A of Analysis in Column I of AllCollections.
No need for a vlookup.
|