Announcements
No record found.
In Microsoft Dynamics 365, the duplicate detection and merge functionality are standard features that help users maintain clean data. However, it is possible to configure or disable aspects of this functionality based on your requirements.
To hide or disable the "Merge" button in the duplicate detection pop-up or completely disable merging functionality,
Disabling duplicate detection rules entirely will stop the system from triggering the duplicate pop-up when a user creates or updates records.
If you want to keep duplicate detection but hide the "Merge" button specifically, you can implement JavaScript to modify the behavior of the pop-up.
Example:
function disableMergeButton() { setTimeout(function () { var mergeButton = document.querySelector('[aria-label="Merge"]'); // Locate the Merge button if (mergeButton) { mergeButton.style.display = "none"; // Hide the button } }, 500); // Delay to ensure the pop-up has loaded }
Note: This approach is unsupported and could break if Microsoft changes the DOM structure in future updates.
Restrict users from accessing the "Merge" feature altogether.
This will prevent users from performing merges system-wide but does not specifically hide the merge button on the duplicate detection pop-up.
If none of the above options meet your requirements, you can use a plugin or Power Automate flow to handle duplicate creation differently:
Plugin Approach: Develop a plugin that triggers on the "Create" or "Update" message for the target entity. It checks for duplicates and prevents merging programmatically without displaying the duplicate detection pop-up.
Power Automate Flow: Configure a flow that detects duplicates after the record is saved and takes custom actions based on your requirements.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
ManoVerse 180 Super User 2026 Season 1
11manish 123
CU11031447-0 100