Forum Discussion
C_T_M_81
Aug 09, 2022Copper Contributor
How can I filter out rows that have duplicate values in adjacent columns?
I am trying to filter out rows with duplicate values that appear in adjacent columns. Full disclosure, its been years since I used Excel in any meaningful way. Any help is much appre...
- Aug 09, 2022
You may create a helper column (say in column E) with the following formula...
=C2=D2
This formula will return TRUE when values in columns C and D are the same and FALSE if they are different and then you may apply the Filter and choose TRUE or FALSE as per your requirement.
Please refer to the attached with formula in place.
Subodh_Tiwari_sktneer
Aug 09, 2022Silver Contributor
You may create a helper column (say in column E) with the following formula...
=C2=D2
This formula will return TRUE when values in columns C and D are the same and FALSE if they are different and then you may apply the Filter and choose TRUE or FALSE as per your requirement.
Please refer to the attached with formula in place.
- C_T_M_81Aug 09, 2022Copper ContributorThat did the trick.