How to identify duplicate values across one row?

waveriot

New Member
Joined
Dec 16, 2013
Messages
6
Hello,

I am trying to figure out a way to have a test column that can flag (i.e. YES or No) if a row has duplicate value across two or more columns like the following:

ABCDE
Date 1Date 2Date 4Date 5Duplicate Dates?
12/23/2015 10:2412/24/2015 20:2212/29/2015 10:1612/29/2015 10:16Yes
12/15/2015 11:4612/16/2015 21:3912/15/2015 12:5912/28/2015 2:28No
12/3/2015 0:1812/3/2015 0:1812/3/2015 3:1612/31/2015 3:52Yes
12/21/2015 1:0712/22/2015 19:1712/28/2015 1:48No

<tbody>
</tbody>

In this example column E would look at the row range of dates and determine if there is a duplicate value or not.

Can someone help? I keep searching but I only see solutions for duplicates between rows in one column...

Thank you,
David
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
I would tuck away a pivot table and if any date_time scored 2 or more then make the E column "yes"
 
Upvote 0
Maybe...

Formula in E2 copied down
=IF(MAX(FREQUENCY(A2:D2,A2:D2))>1,"Yes","No")

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,840
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top