+ Reply to Thread
Results 1 to 5 of 5

Convert A1 formulas to R1C1 Formula Array

  1. #1
    Forum Contributor
    Join Date
    05-27-2012
    Location
    New Brunswick, Canada
    MS-Off Ver
    Excel 2016
    Posts
    349

    Convert A1 formulas to R1C1 Formula Array

    I was given the following code and am trying to understand and modify it myself in VBA. I understand it has to be written in R1C1 as opposed to A1 format and I am probably just making a typo I haven't noticed.
    A4 - BLANK CELL
    B4 - BLANK CELL
    C4 - =IF(A4=0,"0",(A4+B4/60))
    D4 - BLANK CELL
    E4 - BLANK CELL
    F4 - =IF(D4=0,"0",(D4+E4/60))
    G4 - =IF(A4=0,"0",(F4/C4))
    H4 - =TEXT(I4,"dddd")
    I4 - Column I is date formatted and right now the cell value is 6/1/2013
    J4 - =IF(A4=0,"",(F4)/(C4))
    K4 - BLANK CELl
    L4 - BLANK CELL
    M4 - =IF(K4=0,"0",(K4+L4/60))
    N4 - =IF(A4=0,"",(M4)/(C4))

    Then at the bottom I have a another row of formulas (most of which sum the columns)
    A35 to F35 - =SUM(A4:A35). The column reference of course changes from A to F
    G35 - =IF(A35=0,"0",(F35/C35))
    H35 - BLANK CELL
    I35 - BLANK CELL
    J35 - =IF(A35=0,"",(F35)/(C35))
    K35 to M35 - =SUM(K4:K35). The column reference of course changes from K to M
    N35 - =IF(A35=0,"",(M35)/(C35))

    Attached are the codes I was given but I need to change it to incorporate these columns/formulas instead.
    Please Login or Register  to view this content.
    Please Login or Register  to view this content.
    Is there an easy way to write a formula array aside from keying letter by letter? That is my problem, I'm sure my syntax is just all wrong. I've inserted a copy of the workbook as well.
    Attached Files Attached Files

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: Convert A1 formulas to R1C1 Formula Array

    If you write the formulas in A1 format in a cell. Then select option from the MS Button in the upper left corner. Select formulas, check the box for R1C1. Close the options. The formula that you created in A1 will now be in R1C1 so you can verify the veracity and copy it to your VBA code. This will help you to learn R1C1.

    Alan
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Forum Contributor
    Join Date
    05-27-2012
    Location
    New Brunswick, Canada
    MS-Off Ver
    Excel 2016
    Posts
    349

    Re: Convert A1 formulas to R1C1 Formula Array

    wow I totally didn't know that thanks! Still issues with writing the Array formula though, which I'm sure is just a punctuation or spelling mistake...

  4. #4
    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,241

    Re: Convert A1 formulas to R1C1 Formula Array

    The other alternative is to create a working formula in a cell.

    Then:

    select the cell
    start the macro recorder
    press F2 to go into Edit Mode
    press Enter, or Ctrl-Shift-Enter for an Array Formula, to recommit the formula
    stop the macro recorder.

    look at the code in the VBE editor

    For example:

    Please Login or Register  to view this content.
    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


  5. #5
    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,241

    Re: Convert A1 formulas to R1C1 Formula Array

    Sorry, I meant to point out that the complication with R1C1 notation is that the formula is relative to the cell that contains the formula.


    Regards, TMS

+ 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