+ Reply to Thread
Results 1 to 2 of 2

Copy, calc and repeat

Hybrid View

Guest Copy, calc and repeat 03-12-2005, 11:06 AM
Guest Re: Copy, calc and repeat 03-13-2005, 06:06 PM
  1. #1
    JayL
    Guest

    Copy, calc and repeat

    all-
    looking for a way to copy cells B1to I1 down 100 rows and calculate then
    repeat - B101 to I101 down 100 rows and calculate until the corresponding A
    column cell is blank. Perhaps a message box before moving on to the next
    100?

    Stated another way - If Col A is populated from A1 to A1570 (just an
    example) I need to copy the formulas in B1 thru I1 to B1570 thru I1570 - in
    blocks of 100 rows.

    any ideas?

    FYI the reason for this is the B thru I cells contain functions
    referencing numerous other sheets in the workbook. The calculating after
    pasting a 1000 rows at a time can take up to 2 minutes on a 2.4 P4 with 512
    meg ram. This way I think I can get some results to consider while the
    processing moves on to other rows.



    TIA

    J-



  2. #2
    Trevor Shuttleworth
    Guest

    Re: Copy, calc and repeat

    Try this:

    Sub CopyFormulae()
    Dim LastRow As Long
    Dim CalcStatus As Long
    'Debug.Print Now() & " Start"
    Application.ScreenUpdating = False
    CalcStatus = Application.Calculation
    Application.Calculation = xlCalculationManual
    LastRow = Range("A" & Rows.Count).End(xlUp).Row
    Range("B1:I1").Copy
    Range("B1:I" & LastRow).PasteSpecial _
    Paste:=xlPasteFormulas, _
    Operation:=xlNone, _
    SkipBlanks:=False, _
    Transpose:=False
    Application.Calculation = CalcStatus
    Application.ScreenUpdating = True
    'Debug.Print Now() & " End"
    End Sub

    It does it all in one go but it should be virtually instantaneous. At least
    it is on my P4. However, my formulae were relatively simple so you could
    post back with your formulae if it is slower than you might hope. Tried
    with 1570 rows of data.

    Regards

    Trevor


    "JayL" <JayL@nospam.com> wrote in message
    news:xNCdnaMa0ut-a6_fRVn-1Q@comcast.com...
    > all-
    > looking for a way to copy cells B1to I1 down 100 rows and calculate then
    > repeat - B101 to I101 down 100 rows and calculate until the corresponding
    > A column cell is blank. Perhaps a message box before moving on to the next
    > 100?
    >
    > Stated another way - If Col A is populated from A1 to A1570 (just an
    > example) I need to copy the formulas in B1 thru I1 to B1570 thru I1570 -
    > in blocks of 100 rows.
    >
    > any ideas?
    >
    > FYI the reason for this is the B thru I cells contain functions
    > referencing numerous other sheets in the workbook. The calculating after
    > pasting a 1000 rows at a time can take up to 2 minutes on a 2.4 P4 with
    > 512 meg ram. This way I think I can get some results to consider while
    > the processing moves on to other rows.
    >
    >
    >
    > TIA
    >
    > J-
    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1