+ Reply to Thread
Results 1 to 8 of 8

Selecting all rows that match criteria

Hybrid View

  1. #1
    Registered User
    Join Date
    11-07-2014
    Location
    Dallas, TX
    MS-Off Ver
    MS Office Pro Plus 2010
    Posts
    3

    Question Selecting all rows that match criteria

    Hey guys.

    I've been working in Excel for along time, but I've never had to do something like this before. I have a worksheet containing a list of transactions. Columns include Date, Investor, Amount, and Type. Let's call this the "Transactions" worksheet. Then, I have a worksheet to show summary information for each investor. Let's call this the "Summary" worksheet. There is a third worksheet for investor personal information called "Profiles".

    I have a dropdown box on the Summary page to select which investor you want to see summary information for. I can easily generate totals and such, but I was also hoping to dynamically generate a list of transactions. In other words, go through the Transactions page and grab all the rows that match the investor name (or some other key perhaps). Then, take those and display them all on the Summary page. It's basically a filter, but dynamically producing the table on another worksheet.

    Does that make sense? I'm going out of my mind trying to do this!

    Jumper

  2. #2
    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: Selecting all rows that match criteria

    Hi, welcome to the forum

    This sounds do-able. Can you provide a (clean) sample workbook for me to take a look at?
    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

  3. #3
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Selecting all rows that match criteria

    The problem seems to make sense. To really help you it would be an advantage to see a copy of your workbook.

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  4. #4
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Selecting all rows that match criteria

    Sorry Ford, didn't see your post until too late.

  5. #5
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Selecting all rows that match criteria

    This is the start of what you need
    It searches for the word select in the selected range and copies the complete row to a new sheet.
    It is easy to change the search range and the search text.

    I will modify the code to delete the existing summary sheet and create a new one each time the macro is run.


    Sub Select_Select()
    Dim rngFind As Range
        Dim strValueToPick As String
        Dim rngPicked As Range
        Dim rngLook As Range
        Dim strFirstAddress As String
    
    '***************************************************
    'This line selects the whole spreadsheet to search.  Columns("A:A").select would search column A only
        Cells.Select
     '***************************************************
        
        Set rngLook = Selection
    
    ''***************************************************
     'This defines your search string
        strValueToPick = "SELECT"
    
    '***************************************************
     
        With rngLook
            Set rngFind = .Find(strValueToPick, .Cells(1, 1), LookIn:=xlValues, lookat:=xlWhole)
            If Not rngFind Is Nothing Then
                strFirstAddress = rngFind.Address
                Set rngPicked = rngFind
                Do
                    Set rngPicked = Union(rngPicked, rngFind)
                    Set rngFind = .FindNext(rngFind)
                Loop While Not rngFind Is Nothing And rngFind.Address <> strFirstAddress
            End If
        End With
        
        If Not rngPicked Is Nothing Then
            rngPicked.EntireRow.Select
        End If
    
    
    Selection.Copy
    
        Workbooks.Add
        ActiveSheet.Paste
        
    End Sub


    This is the revised code. Make sure you have a Sheet1 and a Summary Sheet.

    
    Sub Select_Select()
    Dim rngFind As Range
        Dim strValueToPick As String
        Dim rngPicked As Range
        Dim rngLook As Range
        Dim strFirstAddress As String
    
    Application.DisplayAlerts = False
        Sheets("Summary").Delete
    Application.DisplayAlerts = True
    
        Sheets("Sheet1").Select
        
        Cells.Select
        Set rngLook = Selection
        strValueToPick = "SELECT"
        With rngLook
            Set rngFind = .Find(strValueToPick, .Cells(1, 1), LookIn:=xlValues, lookat:=xlWhole)
            If Not rngFind Is Nothing Then
                strFirstAddress = rngFind.Address
                Set rngPicked = rngFind
                Do
                    Set rngPicked = Union(rngPicked, rngFind)
                    Set rngFind = .FindNext(rngFind)
                Loop While Not rngFind Is Nothing And rngFind.Address <> strFirstAddress
            End If
        End With
        
        If Not rngPicked Is Nothing Then
            rngPicked.EntireRow.Select
        End If
    
    
    Selection.Copy
        Sheets.Add After:=ActiveSheet
        ActiveSheet.Name = "Summary"
        ActiveSheet.Paste
        
    End Sub
    Last edited by mehmetcik; 11-07-2014 at 08:08 PM.

  6. #6
    Registered User
    Join Date
    11-07-2014
    Location
    Dallas, TX
    MS-Off Ver
    MS Office Pro Plus 2010
    Posts
    3

    Re: Selecting all rows that match criteria

    Hey guys. I tried to upload my sample file, but it said it was too big. Let's try this instead: https://www.dropbox.com/s/9913d70o43...pped.xlsx?dl=0

    Again, the Profiles tab contains investor information. The Transactions tab contains a list of transactions that I want to be filtered dynamically on the Summary tab by selecting an investor at the top. Thanks for the help!

    Jumper

  7. #7
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Selecting all rows that match criteria

    The Transaction column titles don't match very well the column headers on the Summary worksheet. If you can make the columns match, this formula, entered with Ctrl + Shift + Enter will take the values from the Transactions worksheet that match the name in A1 of the Summary worksheet.

    Formula: copy to clipboard
    =IFERROR(INDEX(Transactions!$E$2:$E$50,SMALL(IF(Transactions!$A$2:$A$50=Summary!$A$1,ROW(Transactions!$A$2:$A$50)-MIN(ROW(Transactions!$A$2:$A$50))+1),ROWS($1:1))),"")


    The bold values in the formula are what you have to change to match the columns.

    The result is:

    A
    B
    C
    D
    E
    F
    9
    Transactions
    10
    Type Date Cost Price Adjustment Total
    11
    Purchase
    14/05/2014
    12
    Distribution
    07/08/2014
    13
    Adjustment
    01/11/2014
    14


    This is from the Transactions worksheet. As you can see the column headers don't match the Summary.

    A
    B
    C
    D
    E
    1
    Investor
    Date
    Shares
    Investment
    Transaction Type
    2
    Chuck Jones
    01/01/2012
    $10,000.00
    Initial Investment
    3
    Chuck Jones
    01/07/2012
    100,000.00
    Purchase
    4
    Chuck Jones
    01/01/2013
    100,000.00
    Distribution
    Last edited by newdoverman; 11-11-2014 at 12:43 PM.

  8. #8
    Registered User
    Join Date
    11-07-2014
    Location
    Dallas, TX
    MS-Off Ver
    MS Office Pro Plus 2010
    Posts
    3

    Re: Selecting all rows that match criteria

    That did the trick! Thanks!
    Last edited by benjumper; 11-11-2014 at 04:33 PM. Reason: RESOLVED

+ 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] Selecting rows from one tab based on date test criteria
    By Rauls in forum Excel General
    Replies: 6
    Last Post: 11-08-2014, 03:00 PM
  2. Replies: 3
    Last Post: 04-03-2013, 11:08 AM
  3. selecting rows that match imput box
    By christo in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-27-2008, 12:32 AM
  4. [SOLVED] Selecting rows based on criteria
    By JCP in forum Excel General
    Replies: 3
    Last Post: 04-05-2006, 04:30 AM
  5. Selecting rows based simultaneously on 3 criteria
    By miserere in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-21-2005, 03:05 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