+ Reply to Thread
Results 1 to 2 of 2

Fill In formula with VBA

  1. #1
    Registered User
    Join Date
    04-08-2005
    Posts
    2

    Fill In formula with VBA

    Hi, quick question, I want to write an Excel VBA macro to emulate the Fill Right functionality of excel including date series, color formatting etc.

    For example, I have my cells C10:C20 and I want to fill right to F10:F20 Can this be done quickly in VBA?

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Gargoyle82,

    To fill across the range use copy and paste special.

    Example:
    Range("C10:C20").Copy
    Range("D10:F20").PasteSpecial xlPasteAll
    Application.CutCopyMode = False
    Range("C10").Activate


    Hope this helps,
    Leith Ross

+ 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