Hi - I'm using the code below to copy and paste from one workbook to another, but it takes forever. Is there a better way to do it? Thanks!
Sub Macro1()
Application.ScreenUpdating = False
Set ws1 = ThisWorkbook.Sheets("Dump")
Set ws2 = Workbooks("DATA").Sheets("Info")
With ws1...