Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

EXCEL SPREADSHEET 1

Status
Not open for further replies.

trashcanman

Mechanical
Joined
Jan 4, 2002
Messages
470
Location
US
Gentlemen,

How do I make excel check a column (or columns) to see if any 2 cells have the same value or expression? Thanks.
 
one way to do it - in the next column over, use the countif() function to count the number of cells with a given value. Example:

column C has your values in it, from cell C3 to cell C21. Cell D3 holds the function "=COUNTIF($C$3:$C$21,C3)"
Cell D4 holds "=COUNTIF($C$3:$C$21,C4)"
and so on. If there are no matches, column D will hold only 1s. If there are matches, there will be numbers greater than one in column D. Use the max() function to look at the whole column for the max number of matches.
 
Try using the MATCH function. An explanation of the passed variable is included in the description of the function.

Hope this helps!!!
 
Trashcanman,
I found the answer to your problem at .
An array formula (entered with ctr-shift-enter) =SUM(1/COUNTIF(A1:A100, A1:A100)) gives the number of distinct entrees in the range. If expression =COUNTA(A1:A100)-SUM(1/COUNTIF(A1:A100,A1:A100)) not equal to zero then the range contains at least two identical values.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top