WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Search Excel form (Formula?)

 
   Home -> Office -> Worksheet Functions RSS
Next:  Where can I get a template for 3-column (green) l..  
Author Message
Rob I

External


Since: Sep 03, 2008
Posts: 3



(Msg. 1) Posted: Wed Sep 03, 2008 2:25 pm
Post subject: Search Excel form (Formula?)
Archived from groups: microsoft>public>excel>worksheet>functions (more info?)

I have two worksheets in excel 2003 and I want to check if there are any
matches from column C on worksheet to with worksheet ons column F. They are
numbers and leters that I need to match up if any and then highlight. What is
the best formula to use or way to complete this?

Thanks
Back to top
Login to vote
smartin

External


Since: Jul 24, 2008
Posts: 292



(Msg. 2) Posted: Wed Sep 03, 2008 6:40 pm
Post subject: Re: Search Excel form (Formula?) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Rob I wrote:
> I have two worksheets in excel 2003 and I want to check if there are any
> matches from column C on worksheet to with worksheet ons column F. They are
> numbers and leters that I need to match up if any and then highlight. What is
> the best formula to use or way to complete this?

For matching, check into VLOOKUP. Perfect for matching one column
against another.

For highlighting, perhaps conditional formatting will do the trick.
Back to top
Login to vote
Rob I

External


Since: Sep 03, 2008
Posts: 3



(Msg. 3) Posted: Wed Sep 03, 2008 6:40 pm
Post subject: Re: Search Excel form (Formula?) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Ok, I did look at this option but needed a little help with how and where to
put the command to get the out put I need.

Highlight I think I have covered.


Thanks

"smartin" wrote:

> Rob I wrote:
> > I have two worksheets in excel 2003 and I want to check if there are any
> > matches from column C on worksheet to with worksheet ons column F. They are
> > numbers and leters that I need to match up if any and then highlight. What is
> > the best formula to use or way to complete this?
>
> For matching, check into VLOOKUP. Perfect for matching one column
> against another.
>
> For highlighting, perhaps conditional formatting will do the trick.
>
Back to top
Login to vote
smartin

External


Since: Jul 24, 2008
Posts: 292



(Msg. 4) Posted: Wed Sep 03, 2008 9:35 pm
Post subject: Re: Search Excel form (Formula?) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

So assume Column C has the "foundation" information and Column "F" has
some input you are hoping to match in C.

In a spare column, try this:

=VLOOKUP(F1,C:C,1,FALSE)

This can be filled down in your spare column.

This will check if F1 is somewhere in Column C. If it is, the value in
Column C is returned. If not, #N/A is returned.

Does this help?


Rob I wrote:
> Ok, I did look at this option but needed a little help with how and where to
> put the command to get the out put I need.
>
> Highlight I think I have covered.
>
>
> Thanks
>
> "smartin" wrote:
>
>> Rob I wrote:
>>> I have two worksheets in excel 2003 and I want to check if there are any
>>> matches from column C on worksheet to with worksheet ons column F. They are
>>> numbers and leters that I need to match up if any and then highlight. What is
>>> the best formula to use or way to complete this?
>> For matching, check into VLOOKUP. Perfect for matching one column
>> against another.
>>
>> For highlighting, perhaps conditional formatting will do the trick.
>>
Back to top
Login to vote
Rob I

External


Since: Sep 03, 2008
Posts: 3



(Msg. 5) Posted: Thu Sep 04, 2008 7:30 am
Post subject: Re: Search Excel form (Formula?) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I think so. What I have is this Column A "200 items" and Column B "840 items"
of alphanumeric information and I need to cross check them to see if any
matches are found from Column A to Column B. So I would put the Vlookup in
Column C from cell 2 through 840 then it would let me know if any matches
were found?

"smartin" wrote:

> So assume Column C has the "foundation" information and Column "F" has
> some input you are hoping to match in C.
>
> In a spare column, try this:
>
> =VLOOKUP(F1,C:C,1,FALSE)
>
> This can be filled down in your spare column.
>
> This will check if F1 is somewhere in Column C. If it is, the value in
> Column C is returned. If not, #N/A is returned.
>
> Does this help?
>
>
> Rob I wrote:
> > Ok, I did look at this option but needed a little help with how and where to
> > put the command to get the out put I need.
> >
> > Highlight I think I have covered.
> >
> >
> > Thanks
> >
> > "smartin" wrote:
> >
> >> Rob I wrote:
> >>> I have two worksheets in excel 2003 and I want to check if there are any
> >>> matches from column C on worksheet to with worksheet ons column F. They are
> >>> numbers and leters that I need to match up if any and then highlight. What is
> >>> the best formula to use or way to complete this?
> >> For matching, check into VLOOKUP. Perfect for matching one column
> >> against another.
> >>
> >> For highlighting, perhaps conditional formatting will do the trick.
> >>
>
Back to top
Login to vote
smartin

External


Since: Jul 24, 2008
Posts: 292



(Msg. 6) Posted: Thu Sep 04, 2008 8:49 pm
Post subject: Re: Search Excel form (Formula?) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If you need to know if entry A is somewhere B, then

=VLOOKUP(A2,B:B,1,false)
(fill through row 201 for 200 items in A)


Conversely, if you need to know if entry B is somewhere in A (I think
this is the one you want):

=VLOOKUP(B2,A:A,1,false)
(fill through row 841 for 840 items in B)


In both cases, either a matching value is returned, or #N/A if no match.


Rob I wrote:
> I think so. What I have is this Column A "200 items" and Column B "840 items"
> of alphanumeric information and I need to cross check them to see if any
> matches are found from Column A to Column B. So I would put the Vlookup in
> Column C from cell 2 through 840 then it would let me know if any matches
> were found?
>
> "smartin" wrote:
>
>> So assume Column C has the "foundation" information and Column "F" has
>> some input you are hoping to match in C.
>>
>> In a spare column, try this:
>>
>> =VLOOKUP(F1,C:C,1,FALSE)
>>
>> This can be filled down in your spare column.
>>
>> This will check if F1 is somewhere in Column C. If it is, the value in
>> Column C is returned. If not, #N/A is returned.
>>
>> Does this help?
>>
>>
>> Rob I wrote:
>>> Ok, I did look at this option but needed a little help with how and where to
>>> put the command to get the out put I need.
>>>
>>> Highlight I think I have covered.
>>>
>>>
>>> Thanks
>>>
>>> "smartin" wrote:
>>>
>>>> Rob I wrote:
>>>>> I have two worksheets in excel 2003 and I want to check if there are any
>>>>> matches from column C on worksheet to with worksheet ons column F. They are
>>>>> numbers and leters that I need to match up if any and then highlight. What is
>>>>> the best formula to use or way to complete this?
>>>> For matching, check into VLOOKUP. Perfect for matching one column
>>>> against another.
>>>>
>>>> For highlighting, perhaps conditional formatting will do the trick.
>>>>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Worksheet Functions All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET