Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
Any ideas why this: sub demo() application.calculation = xlcalculationmanual range("B2:U201").formula = "=$A2&B$1" end sub would be so much slower than this: sub demo() application.calculation = xlcalculationmanual dim i as integer dim j as integer for i = 1 to 200 for j = 1 to 20 range("A1").offset(i,j).formula = "=" & range("a1").offset(i,0).address(false,true) & "&" & range("a1").offset(0,j).address(true,false) next j next i end sub The actual formula in my code is more complex than =$A1&B$2, but the principle is the same. Sam |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
http://CannotDeleteFile.net - Cannot Delete File? Try Long Path ToolFilename is too long? Computer Complaining Your Filename Is Too Long? TheLong Path Tool Can Help While most people can go about their businessblissfully unaware of the Windo | Excel Discussion (Misc queries) | |||
Long Long Long Nested If Function | Excel Discussion (Misc queries) | |||
Tcl's Tcom meets Office 2003 - giving pre-.NET Visual Basic for Applications a small taste of introspection the long way round... | Excel Programming | |||
Can faster CPU+larger/faster RAM significantly speed up recalulati | Excel Discussion (Misc queries) | |||
How do I ROUND() round off decimals of a column dataset? | Excel Worksheet Functions |