+ Reply to Thread
Results 1 to 4 of 4

how I can optimise this macro?

Hybrid View

  1. #1
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,213

    Re: how can i write a small macro for this code?

    Here's the loop but I'm sure there's a better way:

    Dim i As Long
    For i = 1 To 15
    Range("B" & i).FormulaR1C1 = "=SUM(Sheet1!C[" & 9 + i & "])"
    Next


    Regards
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: how can i write a small macro for this code?

    Or,

    Range("B1:B15").FormulaR1C1 = "=SUM(INDEX(Sheet1!C12:C26,0,ROWS(R1:R)))"
    @mithil - please retitle your thread to something more appropriate - "optimise code" or some thing along those lines
    Last edited by DonkeyOte; 10-29-2010 at 03:11 AM. Reason: missing )

+ 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