Results 1 to 4 of 4

To-Do List: How to populate a sheet if drop-down criteria is met in multiple other sheets

Threaded View

  1. #2
    Forum Expert
    Join Date
    11-28-2012
    Location
    Guatemala
    MS-Off Ver
    Excel 2010
    Posts
    2,394

    Re: To-Do List: How to populate a sheet if drop-down criteria is met in multiple other she

    this routine will render your desired results...

    Assuming that you are new to VBA (visual basic macros) to run the routine :

    1. goto to the view tab
    2. select the macro
    3. click run


    Sub urgent()
    Set sh1 = Sheets("Urgent")
    r2 = 3
    For s = 2 To Sheets.Count
    r = 3
    Set sh2 = Sheets(s)
    While sh2.Cells(r, 2) <> ""
    If Trim(sh2.Cells(r, 3)) = "Urgent" Then
    sh1.Cells(r2, 2) = sh2.Name
    sh1.Cells(r2, 3) = sh2.Cells(r, 2)
    r2 = r2 + 1
    End If
    r = r + 1
    Wend
    Next s
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Populate data on table based on multiple criteria and value selected from drop-down
    By hcyeap in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-26-2015, 07:45 AM
  2. populate multiple sheets based on a criteria
    By ceussk in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-21-2015, 04:05 PM
  3. populate list in form multiple work sheets based on a criteria
    By Kelly Linton-Selkirk in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-21-2015, 04:00 PM
  4. populate a list on one work sheet from multiple work sheets that meet a criteria
    By Kelly Linton-Selkirk in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 01-21-2015, 03:56 PM
  5. Replies: 5
    Last Post: 09-22-2014, 05:28 AM
  6. Replies: 12
    Last Post: 09-26-2012, 03:32 PM
  7. Drop down menu to populate multiple sheets
    By jerrett in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 06-12-2012, 09:01 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