+ Reply to Thread
Results 1 to 10 of 10

Auto fill formula with offset

Hybrid View

  1. #1
    Registered User
    Join Date
    03-14-2018
    Location
    England, France
    MS-Off Ver
    2016
    Posts
    13

    Auto fill formula with offset

    Hi everyone,

    I am currently making a module to automatically add columns in a sheet.
    I would like to insert a new column and fill it on ~1000 lines with the formula =Bx/Ax if this column is C. The problem is that I don't know if the column is gonna be C or D or Z, so I guess I have to use offset to make something like =cell-1/cell-2.
    A and B would be filled manually.

    I'm new in VBA, I can't get it right to have the formula and then fill in all the column with it, can someone help me ?
    Enclosed is a example of the result I'd like.

    Thank you,

    Jules
    Attached Files Attached Files
    Last edited by JulesR2; 05-03-2018 at 05:10 AM.

  2. #2
    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,246

    Re: Auto fill formula with offset

    Try:

    Option Explicit
    
    Sub Macro1()
    '
    ' Macro1 Macro
    '
    Dim lLR As Long, rStart As Range
    ' assume column requiring formulae is selected
    Set rStart = ActiveCell
    
    ' check that we're in an acceptable column
    If rStart.Column < 3 Then Exit Sub
    
    Application.ScreenUpdating = False
    
    ' determine how many rows of data
    lLR = Cells(Rows.Count, rStart.Column - 2).End(xlUp).Row
    
    ' put formula in cells and format as percentage
    With Range(Cells(2, rStart.Column), Cells(lLR, rStart.Column))
        .FormulaR1C1 = _
        "=IF(AND(RC[-2]<>"""",RC[-1]<>""""),RC[-1]/RC[-2],"""")"
        .NumberFormat = "0%"
    End With
    
    Application.ScreenUpdating = True
    
    End Sub
    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


  3. #3
    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,246

    Re: Auto fill formula with offset

    Has this resolved the issue?

  4. #4
    Registered User
    Join Date
    03-14-2018
    Location
    England, France
    MS-Off Ver
    2016
    Posts
    13

    Re: Auto fill formula with offset

    Hi,

    Sorry, I've been very busy, didn't have the time to really try but i'll do it asap, tomorrow hopefully

    Thanks again for your help,

    Jules

  5. #5
    Registered User
    Join Date
    03-14-2018
    Location
    England, France
    MS-Off Ver
    2016
    Posts
    13

    Re: Auto fill formula with offset

    Hi,

    R1C1 works perfectly, thanks for the tip.

    I'm having an issue to auto hide some merged cells (a 64 wide cell, trying to identify a word inside and hide if it matches, but only hides the first of the 64 cols), if ever you anyone has an idea..

    But anyway, problem solved, as always when I ask help here 216.gif

    Jules

  6. #6
    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,246

    Re: Auto fill formula with offset

    I'm having an issue to auto hide some merged cells (a 64 wide cell, trying to identify a word inside and hide if it matches, but only hides the first of the 64 cols), if ever you anyone has an idea..
    Different question; should be a new thread. However, try using Cell(...whatever...).Resize(,64).EntireColumn to refer to the range

  7. #7
    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,246

    Re: Auto fill formula with offset

    You're welcome.



    If you are satisfied with the solution(s) provided, please mark your thread as Solved.


    New quick method:
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

    Or you can use this way:

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save


    You may also want to consider thanking those people who helped you by clicking on the little star at the bottom left of their reply to your question.

  8. #8
    Registered User
    Join Date
    03-14-2018
    Location
    England, France
    MS-Off Ver
    2016
    Posts
    13

    Re: Auto fill formula with offset

    Yup already done it, I'll end up getting it right one day anyway, never lose hope

  9. #9
    Registered User
    Join Date
    03-14-2018
    Location
    England, France
    MS-Off Ver
    2016
    Posts
    13

    Re: Auto fill formula with offset

    If anyone has this problem one day: just avoid merged cells like the plague, use HorizontalAlignment = xlCenterAcrossSelection instead, much easier when you need to select those cells.

  10. #10
    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,246

    Re: Auto fill formula with offset

    You're welcome. Thanks for the rep.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto fill box and offset activecell
    By kat14 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-09-2015, 07:08 PM
  2. Auto fill decimal sequence using custom fill or formula
    By 8cats in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-22-2013, 08:53 AM
  3. is there a formula for auto fill
    By pates in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 09-17-2013, 03:36 PM
  4. Replies: 1
    Last Post: 09-07-2011, 05:57 PM
  5. formula auto fill
    By jonathankim in forum Excel General
    Replies: 3
    Last Post: 04-15-2010, 10:07 AM
  6. Replies: 1
    Last Post: 07-13-2007, 10:59 AM
  7. Auto fill formula
    By Matt707 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-13-2007, 03:37 PM

Tags for this Thread

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