Results 1 to 20 of 20

Search and highlight only containing text

Threaded View

sajidbagi Search and highlight only... 07-18-2009, 01:59 AM
JBeaucaire Re: Search and highlight only... 07-18-2009, 03:04 AM
sajidbagi Re: Search and highlight only... 07-18-2009, 04:44 AM
JBeaucaire Re: Search and highlight only... 07-18-2009, 06:07 AM
sajidbagi Re: Search and highlight only... 07-19-2009, 10:16 PM
sajidbagi Re: Search and highlight only... 07-20-2009, 12:38 AM
JBeaucaire Re: Search and highlight only... 07-20-2009, 03:33 AM
sajidbagi Re: Search and highlight only... 07-20-2009, 05:10 AM
sajidbagi Re: Search and highlight only... 07-20-2009, 09:56 PM
JBeaucaire Re: Search and highlight only... 07-21-2009, 04:21 AM
sajidbagi Re: Search and highlight only... 07-21-2009, 05:23 AM
JBeaucaire Re: Search and highlight only... 07-21-2009, 12:28 PM
sajidbagi Re: Search and highlight only... 07-22-2009, 01:28 AM
sajidbagi Re: Search and highlight only... 07-22-2009, 03:24 AM
JBeaucaire Re: Search and highlight only... 07-22-2009, 07:50 PM
sajidbagi Re: Search and highlight only... 07-22-2009, 10:05 PM
JBeaucaire Re: Search and highlight only... 07-23-2009, 02:44 AM
JBeaucaire Re: Search and highlight only... 07-23-2009, 03:19 AM
sajidbagi Re: Search and highlight only... 07-23-2009, 03:49 AM
JBeaucaire Re: Search and highlight only... 07-23-2009, 07:22 AM
  1. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Search and highlight only containing text

    This is the amended code for your SEARCH button:
    Private Sub Search_Click()
    Dim LR As Long, Val As String, cell As Range, Rng As Range
    Dim dSh As Worksheet, v
    
    'Setup
        Application.ScreenUpdating = False
        Val = Range("E2").Value
        Set dSh = Sheets("DATABASE")
        Range("A9:F200").ClearContents
    
    'Transfer matching data
        LR = dSh.Range("A" & Rows.Count).End(xlUp).Row
        dSh.Range("A2").AutoFilter
        dSh.Range("A2").AutoFilter Field:=1, Criteria1:="=*" & Val & "*"
        dSh.Range("B2:F" & LR).SpecialCells(xlCellTypeVisible).Copy Range("B9")
        dSh.Range("A2").AutoFilter
    
    'Color matching strings
        LR = Range("B" & Rows.Count).End(xlUp).Row
        Set Rng = Range("B10:F" & LR)
    
        For Each cell In Rng
            v = InStr(cell.Text, Val)
            If v > 0 Then
                cell.Characters(Start:=v, Length:=Len(Val)).Font.ColorIndex = 3
                v = 0
            End If
        Next cell
    
    Application.ScreenUpdating = True
    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)

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