View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Filtering Information

=match() has 3 arguments.

The first is the value that you're trying to match--for me it was A1.

The second is the range that should be looked at to find the match. I could
have used C1:C100 (for the first 100 rows in column C). But since I wanted to
use the whole column, I specified C:C (that's the way excel refers to a whole
column).

The third parm tells excel what kind of match I want. I want to match exact
values, so I used 0.

There's more info in excel's Help.

Brandy wrote:

I think I got this to work exactly how I wanted it to! Thank you so much.

In the formula =isnumber(match(a1,c:c,0)) ..... what does the c,0 do ????
I understand taking a1 and looking for it in column C .... but guess i don't
understand the c,0. Just want to know what it does.

Thank you.

"Dave Peterson" wrote:

You could put it in any unused column--or even insert a new column just to hold
it.

But you will have to adjust the formula to match your data. I used A1 (all of
column A, in fact) as the cell/range to check to see if it appears in column C.

Brandy wrote:

Which column would I put this formula in?

"Dave Peterson" wrote:

You can use this kind of formula to determine if a value appears in another
column:

=isnumber(match(a1,c:c,0))

and drag down as far as you need.



Brandy wrote:

Ok. I hope I explain this correctly.

I have an excel worksheet. I have columns for "Vendor Names - Company A",
"Vendor # - Company A", "Vendor Names - Company B", "Vendor # - Company B".

I want to compare either the names or the numbers (doesn't matter which) and
find all the vendors that Company B has that Company A doesn't have.

Does that make sense? Is there an EASY way to do this?

Thank you.

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson