Formula to check if rows that have the same value in one column have matching values in another column

Rob Patchell

To elaborate; I have an excel with ~4k lines. Lets say column B has numbers. Multiple rows will have the same number in that column (usually like 2-6 will match). Column C has words that will sometimes match with other cells in the same column of the rows that had matching values in column B.

So I want to create a formula that, for each each "chunk" of rows with matching values in column B, will look to see if that chunk also has matching values in column C (but only for that specific group of rows of matching B columns).

Example Excel

Basically I'm trying to narrow down this list and get rid of a big chunk of manual work since if they match I'm not worried about them so I was thinking of just making an =IF(Test, "Y","N") and putting that in a column and deleting all the Y's after.

Brian

This will count the matching column B & column C values. Then eliminate all rows with result greater than 1 to find unique values.

=COUNTIFS(B:B,B1,C:C,C1)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Find values in one column that have association with certain values in another column

Find rows that have the same value on a column in MySQL

Find rows that have same value in one column and other values in another column?

How can I check if all rows have the same column value?

Find rows that have same values in another column - Python

Rows that have same value in a column, sum all values in another column and display 1 row

For each value of a column divide that value by the number of rows that have the same sequence in another column (counting multimapped reads with R)

Fill Pandas dataframe rows, whose value is a 0 or NaN, with a formula that have to be calculated on specific rows of another column

find pairs of rows that have same column value

Filling null values within a Pandas DataFrame with values from the same column that have a matching value in another column

Combine rows that have values in one column and null in another

How to fetch Rows have not this column value in another table column value

Find rows of a dataframe that have same non-unique column values as a column in another dataframe

How do I require a cell in one column to have a value if a cell in another column (same row) has a value?

SQLite3: Delete all rows that share column value and have one or more empty values in another column

How to filter values by Column Name and then extract the rows that have the same value to another CSV file? Python/Pandas

How to extract all rows that have the same value in a column as one of the rows?

sql: select rows which have the same column value in another column with a single query

is it possible for two rows of a column (primary key) of the table to have same character/value with same foreign key(another column)

Selecting rows from Pandas Dataframe with same values in one column that have only missing in another

Getting all values of various rows which have the same value in one column with awk

How to update the value in a column based on another value in the same column where both rows have the same value in another column?

Select Rows With the Greatest Value In One Column When Another Column Has matching Values

Pandas - filter rows with same value in one column and multiple values in another column based on the existence of a value in the latter column

Need a SQL select statement to return rows that have the same id in one column and distinct value in another column

Check if records from one table have same column value in two different dates from another table

How to check if a value in one column is in other column when the queried column have many values?

Count how many rows with one column value have another column value greater than 0 postgresql

Select rows with the same value in one column and specific values in another column