Results 1 to 15 of 15

Collate (lookup) Multiple orders at the same time, based on DATE range in a table

Threaded View

  1. #13
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Collate (lookup) Multiple orders at the same time, based on DATE range in a table

    I'm pretty terrible at VB myself. I just used the recorder to write this, and then manually adjusted the range.

    Sub Filter()
    
        Sheets("FILTER").Range("A6:N500").Clear
        
        Sheets("OPEN ORDERS").Range("A1:N500").AdvancedFilter _
            Action:=xlFilterCopy, _
            CriteriaRange:=Sheets("FILTER").Range("A1:N3"), _
            CopyToRange:=Sheets("FILTER").Range("A6"), _
            Unique:=False
                   
    End Sub
    The code is in the workbook I did attach, you just have to enable macros when you open it. (Your machine may be disabling them by default, but you should still be able to see the code.)

    The first part clears the filtered data on the FILTER tab. The second part pulls the data. It looks at A1:N500 of OPEN ORDERS and then filters the data according to the first 3 lines of the FILTER tab, and dumps it in A6. It's that simple.

    The macro should have a negligible impact on file size. The total code is less than 15 KB.
    Last edited by daffodil11; 11-05-2013 at 10:46 AM.
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to lookup value based on Date time closest to criteria
    By ilionel1 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-08-2013, 02:01 PM
  2. [SOLVED] Sum like orders, then create multiple rows (prod records) based on sum...
    By mvgoggans in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-12-2013, 03:56 PM
  3. Replies: 10
    Last Post: 02-19-2013, 12:05 PM
  4. [SOLVED] Create a lookup table to award point values based on run time
    By coach touch in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-15-2012, 12:35 PM
  5. Multiple lookup based on date range pricing
    By posttoamit in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-18-2011, 05:52 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