I am copying one whole worksheet into another worksheet but it is taking way too long and excel displays a "Excel not responding". Here is my code
Sheets("Sheet1") .Select
Cells.Select
Selection.Copy
Sheets("Sheets2").Select
Range("A1").Select
ActiveSheet.Paste
I have used this code many times and it is pretty fast. But now, since I have a lot of formulas and formatting on Sheet1 it is taking forever or I get an"Excel not responding" and I have to abort. Is there a better or faster code that I can use?? I have tried only copying the data only and not the whole sheet but then Excel gives me a warning that I cannot copy and paste since the copy and paste areas are not the same. Please help!!!
Sheets("Sheet1") .Select
Cells.Select
Selection.Copy
Sheets("Sheets2").Select
Range("A1").Select
ActiveSheet.Paste
I have used this code many times and it is pretty fast. But now, since I have a lot of formulas and formatting on Sheet1 it is taking forever or I get an"Excel not responding" and I have to abort. Is there a better or faster code that I can use?? I have tried only copying the data only and not the whole sheet but then Excel gives me a warning that I cannot copy and paste since the copy and paste areas are not the same. Please help!!!