+ Reply to Thread
Results 1 to 17 of 17

Code for long array formula

  1. #1
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Code for long array formula

    Hi guys,

    I'm pretty sure, the topic is covered in this forum in the past. I'm looking for a macro code to run the below formula, which is a long array more than 255 characters. I tried solutions calling out Part1 and Part2 formula posted in other threads but it is still giving me an error.

    Here is the formula... basically, INDEX is being repeated 10 times. I think it should be split into three part formula, but I don't know the syntax for it. Thanks in advance.

    Please Login or Register  to view this content.

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

    Re: Code for long array formula

    Attaching a sample workbook enables others to work on your problem:

    To attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include BEFORE/AFTER sheets if needed to show the process you're trying to complete or automate. Remember to desensitize the data.

    Click on GO ADVANCED and click "manage attachments" to open the upload window.


    To add a file to a post

  3. #3
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    Refer to the attached macro workbook. I want to populate Column C in the Report sheet using a long array formula and enable this using a macro code.
    Attached Files Attached Files

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Code for long array formula

    Without opening your file, I cant really make out what your formula is doing, but a few things comes to mind...
    - you are using INDEX on a single cell, not a range - it is normally a range. Perhaps a different function would be better?
    - you index the same cell each time, perhaps to shorten the formula, use a short named range for C5?
    - You also seem to me MATCHING onto a single cell, too, instead of a range. Again, maybe a different function may be better?
    - essentially the same formula is being used each time, just a modified MATCH criteria, which you then combine. Maybe break each 1 into it's own cell, then combine all those cells into 1 cell?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    I have included the file to help you simplify my problem. I appreciate any assistance. Thanks!

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Code for long array formula

    OK so what is wrong with the formula you have in C2? (does not need to be an array, btw)

  7. #7
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    The formula runs fine, but when I tried this out in macro it is giving me an error 'unable to set FormulaArray property of the range class'. You can test it out by running Macro1 in the attached file

  8. #8
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Code for long array formula

    OK, I guess my real question is - if the formula works, why change to something else?

  9. #9
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    Because I'm trying to run this report using macro. Below is the code that is giving me error, when I try to convert the formula to macro script

    Please Login or Register  to view this content.

  10. #10
    Forum Contributor
    Join Date
    03-22-2017
    Location
    Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    230

    Re: Code for long array formula

    what you want to meet is count all the reject and cancel in one cell and combine the related queue in anther one cells. ("No reject" show if there have no reject")
    Here have 2 methods for you,

    one is array formula, but i not sure whether you able to use the textjoin function.
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    another is VBA code, if the id is not exist it will turn to "No Such Id"
    Please Login or Register  to view this content.
    Hope you can learn every time you visit here.

    If you still confuse on how it work, kindly ask or go to
    i) Formula - Formula (Ribbon) > Formula Auditing (Section) > Evaluate Formula > Evaluate; or
    ii) VBA/Code - Click F8 to see how it work step by step.

    It it take care of your question, Please:
    Mark tread as [Solved] [Thread Tools->Mark thread as Solved]
    ;and
    Click *Add Reputation to thank anyone solved your question.

  11. #11
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    Awesome, exactly as I wanted. The VBA code works perfectly, however it takes a long time when I tried this on a report with 8000 rows... Is there anything I can add to speed up the run time?

  12. #12
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Code for long array formula

    Slightly different approach:
    Please Login or Register  to view this content.

  13. #13
    Forum Contributor
    Join Date
    03-22-2017
    Location
    Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    230

    Re: Code for long array formula

    you may try to sort the data first, and add this line in between beginning and end of code.
    Application.ScreenUpdating = False (after sub)
    Application.ScreenUpdating = True (before end sub)

    and you may try this as well, i use filter instead to avoid check through 8000 rows, but not sure on the time consume.
    Please Login or Register  to view this content.

  14. #14
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    I tried the filter code and it is taking longer though, So added Application.ScreenUpdating for the previous code and it helped a bit. Thanks!

    Also Kyle123, I didn't try your code but thanks for trying!

  15. #15
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Code for long array formula

    My code will be the fastest, but it doesn't quite so what the others Do, it will give you the results for all line nos. Without the intermediate step of putting the distinct items in the results sheet.

  16. #16
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula

    I tried your code Kyle, it definitely seems faster and as you said it populates all columns. But for a VBA beginner like me, the code seems complicated and very hard to change to fit my current data with additional columns and data.

  17. #17
    Registered User
    Join Date
    09-13-2012
    Location
    GA, USA
    MS-Off Ver
    2010
    Posts
    48

    Re: Code for long array formula


+ 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. [SOLVED] VBA for Long Array Formula
    By Dahlia in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-07-2018, 07:44 AM
  2. Long Array Formula in VBA (Help)
    By Hozcat in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-01-2017, 10:43 AM
  3. Writing long array formula in VBA?
    By maym in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-28-2017, 02:44 AM
  4. [SOLVED] Long Formula Array
    By henxan in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-04-2014, 09:03 AM
  5. [SOLVED] Array Formula taking too Long
    By gborja888 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 04-01-2012, 03:41 AM
  6. [SOLVED] Cannot get specific array formula to work with VBA? (LONG CODE)
    By magicbob007 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-05-2012, 10:22 PM
  7. Long Array Formula VBA
    By maacmaac in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-27-2011, 08:57 AM

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