Results 1 to 15 of 15

.Find function

Threaded View

  1. #1
    Registered User
    Join Date
    12-18-2014
    Location
    nyc
    MS-Off Ver
    2013
    Posts
    30

    .Find function

    Hi- I am struggling a bit with the find function. I currently have a summary sheet called "Comments" and I have a data sheet called "Data". In my comments sheet, I am showing the following 7 columns (I have an empty column in between each):
    1. Company name (column B)
    2. Type of business (column D)
    3. Date (column F)
    4. Type of business code (column H)
    5. Clientel (column J)
    6. Revenue (column L)
    7. Comments (column N)

    These 7 columns are being populated from the Data tab manually. the Data tab has about 25 columns of data, and I want my VBA to:
    1. look in column 21, which is a column full of formulas, and find every cell with a "yes"
    2. in that same row, grab the information needed above, and place it into the Comments tab.

    The VBA below gets me halfway there... If there are 15 cells in column 21 with the value of "yes", then there should be 15 rows in the Comments tab. I'm having a hard time finding the "yes" in column 2, then placing it in Comments tab, then going to the next "yes" value in column 21 and placing in the next row of the Comments tab. Very hard to follow- I'm sorry. Here is what I have so far:

    Worksheets("Comments").Range("B4:N1000").ClearContents
     
     
    Dim lCount As Long
    
    Dim TheMark As Range
    
    
    
        Set TheMark = Worksheets("Data").Range("U1")
    
    
            Worksheets("Data").Activate
            For lCount = 1 To WorksheetFunction.CountIf(Columns(21), "yes")
    
                Set TheMark = Columns(21).Find(what:="yes", after:=TheMark, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)
    
                
    
                 With TheMark
                    .Offset(0, -18).Select
                     Set LegalEntity = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("B4").Value = LegalEntity
                        
                    .Offset(0, -5).Select
                     Set LineOfBusiness = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("D4").Value = LineOfBusiness
             
                    .Offset(0, -19).Select
                     Set TradeDate = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("F4").Value = TradeDate
                        
                    .Offset(0, -4).Select
                     Set ErrorType = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("H4").Value = ErrorType
                        
                    .Offset(0, -14).Select
                     Set Counterparty = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("J4").Value = Counterparty
                        
                    .Offset(0, -17).Select
                     Set PNL = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("L4").Value = PNL
                        
                    .Offset(0, -11).Select
                     Set Comments = ActiveCell
                        Worksheets("Comments CMC & NYB").Range("N4").Value = Comments
                    
                    
                 End With
    
                
    
            Next lCount
    Last edited by alansidman; 04-08-2016 at 06:02 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Can I use FIND function to find specific string in a single cell?
    By bonpara in forum Excel General
    Replies: 2
    Last Post: 10-05-2015, 05:46 PM
  2. If function + Find Function to search for multiple values
    By HabsFan89 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-21-2015, 12:11 PM
  3. add in the parameters to the Find function to only find an exact match.
    By jakeembx in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-07-2014, 08:57 AM
  4. [SOLVED] Problem with Find function. Need to find Exact match
    By SMILE in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-06-2012, 07:07 AM
  5. find function doesnt find imported info
    By dscott2479 in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 07-12-2011, 07:11 PM
  6. Replies: 2
    Last Post: 03-30-2009, 04:04 AM
  7. Using find function to find entries in multiple cells
    By stanigator in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-11-2007, 08:45 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