Results 1 to 7 of 7

Data from master worksheet auto filtered onto different worksheet

Threaded View

  1. #3
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Data from master worksheet auto filtered onto different worksheet

    I would take a simpler INDEX approach, giving an index number to each row with "approved" in the correct column.

    On Sheet1 in X9, put this formula and copy down as needed (this column can be hidden later):
    =IF(B9="Approved", X8+1, X8)

    On sheet2, this formula in B2 to indicate how many values should be found:
    =MAX(Sheet1!X:X)

    On Sheet2 you can pull over the matching values by putting this formula anywhere down in column A, then copying down and across as needed:
    =IF(ROW(A1)>$B$1, "", INDEX(Sheet1!A:A, MATCH(ROW(A1), Sheet1!$X:$X, 0)))
    Attached Files Attached Files
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

Thread Information

Users Browsing this Thread

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

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