Subject: HOW TO MAKE SEARCHING WITH BEGINNING LETTER
Posted By: sime_tyres Post Date: 1/3/2006 4:20:59 AM
what is the coding for searching. the user only have to key in the beginning letter and the prgm will show all the name with that letter
for example:

after enter the word "P", and click the ok button, the program will show all the name with beginning with "p"

Reply By: vemaju Reply Date: 1/3/2006 8:37:27 AM
Hi,

This code will help you

Sub Find()
Dim c As Range
For Each c In Selection
    If c.Value Like "A*" Then
        MsgBox c.Value
    End If
Next
End Sub


-vemaju

Go to topic 38203

Return to index page 405
Return to index page 404
Return to index page 403
Return to index page 402
Return to index page 401
Return to index page 400
Return to index page 399
Return to index page 398
Return to index page 397
Return to index page 396