Results 1 to 5 of 5

VBA not overwriting cells

Threaded View

  1. #1
    Registered User
    Join Date
    07-13-2011
    Location
    Glasgow
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    21

    VBA not overwriting cells

    HI I have this code and it is averaging every 12 cells.

     Sub avg_sun()
    Dim i As Long
    
    For i = 35 To 8674 Step 12
    
    Range("CC" & Rows.Count).End(xlUp).Offset(1).Value = WorksheetFunction.Average(Worksheets("sun").Range("BP" & i).Resize(12))
    
    Next i
    
    End Sub

    However I have noticed a problem. When the code is run the first time and the destination cells were the averages are printed to are blank the code works correctly.

    However if the code is run for a second time instead of overwriting the answers already in the cells the new answers are placed at the end

    For instance if the first time run the code puts the averages in cells C2 to C722 the next time the code is run instead of overwriting C2 to C722 It places the averages in cells C723 to 1443.

    Any idea how I can change this code to over right the cells.

    Cheers

    David
    Last edited by mdavid800; 08-07-2011 at 12:47 PM.

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