Forum Discussion
MadsBV
Jan 03, 2024Copper Contributor
How to use duplicates in Excel
Hi, I'm trying to use the duplicates i have found dynamically, i have a datatable containing all my data for multiple cases with different ID's. Then in another sheet i get all data from a sp...
- Jan 03, 2024
Hi SergeiBaklan,
I've actually just solved my problem by doing the following formula in the next empty row.
=IF(COUNTIF($A$2:$B$1007;A2)>1;A2;"")
This returns me every instance that is a duplication.
But thanks a lot for your time 😀
MadsBV
Jan 03, 2024Copper Contributor
Hi SergeiBaklan,
I've actually just solved my problem by doing the following formula in the next empty row.
=IF(COUNTIF($A$2:$B$1007;A2)>1;A2;"")
This returns me every instance that is a duplication.
But thanks a lot for your time 😀
SergeiBaklan
Jan 03, 2024Diamond Contributor
Ok, thanks for sharing