Answer by FreeMan for Macro that does some kind of duplicate check
For simple readability, you can change this:With Sheets("CDGL")rows_c1 = .Cells(Rows.Count, "G").End(xlUp).RowSheets("Duplicate Check").Range("A1:C"& rows_c1).Value =...
View ArticleAnswer by PeterT for Macro that does some kind of duplicate check
There are a variety of clean up things you can do first, because the code is confusing in what exactly you're trying to do.Always use Option Explicit. It will help you avoid confusion in how variables...
View ArticleAnswer by Kaz for Macro that does some kind of duplicate check
Lowest-Hanging VBA Performance FruitYou have With Application.ScreenUpdating = False.EnableEvents = False.DisplayAlerts = FalseEnd WithBut you only have it in force for part of your Sub. If you move...
View ArticleMacro that does some kind of duplicate check
This macro pulls in two workbooks, one being a template with saved formulas already, and the other containing data with thousands of rows...I need to increase the speed because the process takes more...
View Article