Results 1 to 9 of 9

VBA countifs super slow

Threaded View

  1. #1
    Registered User
    Join Date
    07-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2016
    Posts
    21

    VBA countifs super slow

    Hi

    I have a long list of order lines which will vary in size from 1000 to 50000+ rows.

    Something like this:


    Order No: Item Start Time
    3000 Phone 30/06/2016 12:12
    3000 Memory Card
    3000 Cover
    3001 Phone
    3001 Memory Card
    3002 Phone 30/06/2016 11:26
    3002 Memory Card
    3002 Cover

    I need to filter so I see all order lines for the orders that have a start time.

    So after my filter I would need to see this:

    Order No: Item Start Time
    3000 Phone 30/06/2016 12:12
    3000 Memory Card
    3000 Cover
    3002 Phone 30/06/2016 11:26
    3002 Memory Card
    3002 Cover


    My order number is in column E, and my other criteria is in column AA

    My idea (which I got from this forum ) was to add a column (AK) with a countifs formula, and since I'm moving some data around later I wanted to copy/paste values.

    My code works, but it is very, very slow.
    Sub countifs()
        Range("AK2").FormulaR1C1 = "=COUNTIFS(C[-32],RC[-32],C[-10],"">0"")"
        
        
        LastRow = Range("AJ" & Rows.Count).End(xlUp).Row
     
    Range("AK2").Copy Range("AK2:AK" & LastRow)
    
    
        With Range("AK:AK")
            .Value = .Value
        End With
    
    End Sub
    Later in the code I do the actual filtering based on my countifs results, but that part works fine.

    Is there a faster way to handle the countifs?

    Or is there a different way to filter this?
    Last edited by Gekko42; 07-03-2016 at 04:39 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Super Slow Excel
    By graemearthur in forum Excel General
    Replies: 12
    Last Post: 12-23-2015, 03:38 PM
  2. General help simplifying my super slow VB code PLEASE :-D
    By blackcat_78uk in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-30-2015, 05:22 PM
  3. General help simplifying my super slow VB code PLEASE :-D
    By blackcat_78uk in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-30-2015, 04:02 PM
  4. Super slow Insert Columns with 40,000 lines of records
    By stewegg in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-08-2014, 01:48 PM
  5. [SOLVED] Need help with an excel file that is super slow and crashes a lot.
    By regorih in forum Excel General
    Replies: 6
    Last Post: 01-14-2014, 07:23 PM
  6. Tons of Arrays = Super Slow Calculating
    By danmarsh in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-23-2012, 01:52 PM
  7. speeding up code that is super slow
    By cabinetguy in forum Excel Programming / VBA / Macros
    Replies: 28
    Last Post: 05-19-2011, 12:24 PM

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