Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default match identical cols

How do i match identical data in col a and col b using col c
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 54
Default match identical cols

In column C1 use formula =EXACT(A1,B1) Fill down as needed if it is exactly
the same it will show True
If not the same it will show false.
Have a nice day mate.


"aquaflow" wrote in message
...
How do i match identical data in col a and col b using col c


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 157
Default match identical cols

Depends what you want. If you want to match identical data in the same row,
use EXACT as Skinman suggests. If you want to match data in different rows,
then it depends what you want in column C. Two suggestions:

1.
In C1 =IF(ISNA(MATCH(B1,$A$1:$A$10,0))=TRUE,"","Data matched")

This will enter "Data Matched in column C where the data in column B matches
a cell in column A.

2.
If you want to know where in column A the match is, then substitute "Data
matched" with MATCH(B1,$A$1:$A$10,0).
=IF(ISNA(MATCH(B1,$A$1:$A$10,0))=TRUE,"",MATCH(B1, $A$1:$A$10,0))

This will display the row WITHIN THE RANGE where the matched data lies. In
my example these will be the same, but if your range starts at A3, then the
match number will be 2 greater than the row number (eg a matched data in
sheet row 8 is row 6 in the specified range, so 6 will be displayed).

In each case, copy the formula down as far as you need.

--
Ian
--
"aquaflow" wrote in message
...
How do i match identical data in col a and col b using col c



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sumproduct(match range of values in 2+ cols) LisaM Excel Worksheet Functions 15 September 4th 09 06:19 AM
match identical cols aquaflow Excel Discussion (Misc queries) 0 July 11th 08 04:46 PM
If function to match cols and return value of another col Haz Excel Discussion (Misc queries) 1 April 29th 08 03:43 PM
How do I match 2 cols on two books and get price info for all matc Sonny Excel Worksheet Functions 1 August 26th 06 02:45 PM
Range.Select 1st pass 13 cols, 2nd paqss 25 cols twice as wide in error? Craigm[_53_] Excel Programming 2 May 2nd 06 11:04 AM


All times are GMT +1. The time now is 07:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"