Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone. Was hoping someone had some ideas on how to speed up the
following code. The base code was started using the macro-recorder. I selected several sheets using the ctl key, then copied row 2 with formulas in it (each sheet has a row of formulas in the same row), then pasted it to a range. It works....just slowly. I'm running a 2.4G processor with 2.0G of memory...and it still takes forever! Granted, each sheet is being populated with 13,000 cells, but I still didn't think it would take this long. Have a better method?? Thanks! Sub Forecast() Application.ScreenUpdating = False Application.Calculation = xlCalculationManual Set shtarray = Sheets(Array("LMU", "Kit", "SMLC", "WLG", "SMLC Cab", "Serv Cab", "Ntwk Kit", _ "TDAX", "EMS", "SCOUT", "Dir Coup")) shtarray.Select Sheets("LMU").Activate Range("A2:EC2").Copy Set frng = Range("A5:EC" & Data.Range("b65536").End(xlUp).Row) frng.PasteSpecial Paste:=xlPasteFormulas Application.Calculation = xlCalculationAutomatic Application.ScreenUpdating = True |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What is more efficient | Excel Discussion (Misc queries) | |||
is there a more efficient formula than... | Excel Worksheet Functions | |||
Which is more efficient? | Excel Programming | |||
Efficient Looping | Excel Programming | |||
Is there more efficient formula? | Excel Programming |