
They will be listed as such: Sheet1(NAME OF SHEET HERE) and under that will be Sheet2(NAME OF SHEET HERE). Within the list that appears you will see every worksheet that is in that excel file.If the Macro goes in the Worksheet Code, Click Here, otherwise continue to Step 8.
Remove duplicate rows in excel code#
Make sure to paste this code underneath the last line of any other code which is already in the window. In this new window, paste the code for the macro.

Make sure to paste the code underneath the last line of anything else that is in the window. Within this new window, paste the macro code. Another window should have opened within the Visual Basic Editor's window.Go to the menu at the top of the window and click Insert > Module.If the Macro goes in a Module, Click Here, otherwise continue to Step 8.Locate your Excel file it will be called VBAProject (YOUR FILE'S NAME HERE) and click this. On the new window that opens up, go to the left side where the vertical pane is located.Then go to the Developer tab on the ribbon menu and on the far left Click Visual Basic Go to Office Button > Excel Options > Popular > Click Show Developer tab in the Ribbon. Go to Tools > Macros > Visual Basic Editor Or For other ways to get there, Click Here. Press " Alt + F11" - This will open the Visual Basic Editor - Works for all Excel Versions.Open the Microsoft Excel file in which you would like the Macro to function.

Select and copy the text from within the grey box above.MsgBox "Duplicate Rows Deleted: " & CStr(N) If (Rng.Columns(1), V) > 1 ThenĪpplication.Calculation = xlCalculationAutomatic If (Rng.Columns(1), vbNullString) > 1 Then Set Rng = Application.Intersect(ActiveSheet.UsedRange, _Īpplication.StatusBar = "Processing Row: " & Format(Rng.Row, "#,#0")Īpplication.StatusBar = "Processing Row: " & Format(R, "#,#0") ‘and then run the macro and all duplicates will be deleted, leavingĪpplication.Calculation = xlCalculationManual ‘Use the macro by selecting a column to check for duplicates ' This macro will delete all duplicate rows which reside under
