+ Reply to Thread
Results 1 to 2 of 2

Fill Down macro

  1. #1
    Registered User
    Join Date
    09-04-2006
    Posts
    1

    Fill Down macro

    Probably a very simple macro, but what i wish to do is fill my formula down JUST ONE ROW every time i run the macro. any help?


    alternatively, the macro runs untill one of the cells in a certain colum = 10.

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523
    Sub Macro1()

    ActiveCell.Range("A1:G1").Copy
    ActiveCell.Offset(1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlFormulas, Operation:=xlNone, SkipBlanks:= _
    False, Transpose:=False
    Application.CutCopyMode = False
    ActiveCell.Select
    End Sub

+ 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