+ Reply to Thread
Results 1 to 6 of 6

Macro that searches a cell for a word

Hybrid View

  1. #1
    Registered User
    Join Date
    11-13-2006
    Posts
    16

    Macro that searches a cell for a word

    Does anyone out there have code that will search every cell in column G for the word "Panel" and return the word "Yes" in column H.

    Note- what is making this hard for me is that the cell in column G may contain the word "Panel" all by itself or it may be an actual sentence that contains the word "Panel". In either case, I would like the word "Yes" in column H.


    Thanks for your help and ideas.

  2. #2
    Registered User
    Join Date
    11-13-2006
    Posts
    16

    Macro that searches a cell for a word

    Does anyone out there have code that will search every cell in column G for the word "Panel" and return the word "Yes" in column H.

    Note- what is making this hard for me is that the cell in column G may contain the word "Panel" all by itself or it may be an actual sentence that contains the word "Panel". In either case, I would like the word "Yes" in column H.


    Thanks for your help and ideas.

  3. #3
    Forum Contributor
    Join Date
    07-13-2006
    Posts
    400
    a formulaic approach would be to put the following formula in cell H1 and copy down.
    =if(iserror(find("panel",G1,1)),"No","Yes")

    if you need to do it with a macro the find method is what you're looking for.
    the example from the help:
    With Worksheets(1).Range("a1:a500")
        Set c = .Find(2, lookin:=xlValues)
        If Not c Is Nothing Then
            firstAddress = c.Address
            Do
                c.Value = 5
                Set c = .FindNext(c)
            Loop While Not c Is Nothing And c.Address <> firstAddress
        End If
    End With
    you'd want to amend this so that you are looping through column G and perform your search in an individual cell in G. If not c is nothing then range.offset(1,0)="Yes", else "No".

    hth
    --Mark

    Quantum materiae materietur marmota monax si marmota monax materiam possit materiari?

  4. #4
    Registered User
    Join Date
    11-13-2006
    Posts
    16
    hth,

    thanks for the reply. although, it is too advanced for me. can you adjust this code to make it work? Currently, this is not working because of the "If Activesheet.Cells(x,7)="PLANT".... the equal sign is messing it up.

    I do appreciate your time....

    x = 2
    Do
    ActiveSheet.Cells(x, 7).Select
    If ActiveSheet.Cells(x,7) = "PLANT" Then

    Selection.Offset(0,1) = "Yes"
    End If
    Else
    End If
    x = x + 1
    Loop Until Trim(ActiveSheet.Cells(x, 1)) = ""

  5. #5
    Valued Forum Contributor
    Join Date
    08-26-2006
    Location
    -
    MS-Off Ver
    2010
    Posts
    388
    The original request -
    Quote Originally Posted by hgufrin
    Does anyone out there have code that will search every cell in column G for the word "Panel" and return the word "Yes" in column H.
    Using the same method as MDubbelboer - our old friends the Find and FindNext methods:
    Sub PanelCells()
        Dim rngPanelCell As Range, firstAddress As String
        
        With Worksheets(1).Range("G:G")   'search this range on sheet1
            Set rngPanelCell = .Find(what:="Panel", LookIn:=xlValues, LookAt:=xlPart)   'find panel cell
            If Not rngPanelCell Is Nothing Then
                firstAddress = rngPanelCell.Address
                Do
                    rngPanelCell.Offset(, 1).Value = "Yes"
                    Set rngPanelCell = .FindNext(rngPanelCell)
                Loop While Not rngPanelCell Is Nothing And rngPanelCell.Address <> firstAddress  'keep looking
            End If
        End With
    
        Set rngPanelCell = Nothing
    End Sub

  6. #6
    Registered User
    Join Date
    11-13-2006
    Posts
    16
    T-J,

    Thanks so much!!! AWESOME! I have been trying since last week to find this information.

    I appreciate all of you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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