Saturday, September 1, 2012

How to extract Strings End with a desired Sub String using Excel VBA Macro

VBA Macro to extract Strings End with a desired Sub String
Sub Search_Right()
Dim x As Integer
Dim Y As Integer
Dim Z As Integer
Dim b As Integer
Dim a As String
Dim d As String

b = 1
On Error GoTo Label:

d = InputBox("Enter Your Name: ")
a = InputBox("Hai" & " " & d & " " & "Enter Your Search Sring :")
Y = InputBox("Enter Search Colno :")
Z = InputBox("Enter Search Results Colno :")

Cells(1, Z) = " SEARCH RESULTS"
Cells(1, Z).Font.Bold = True

For x = 1 To 100
If Right(LCase(Cells(x, Y)), LCase(Len(a))) = LCase(a) Then
b = b + 1
Cells(b, Z) = Cells(x, Y)
End If
Next x

Label:
End Sub

Thanks,Tamatam

No comments:

Post a Comment

Hi User, Thank You for visiting My Blog. Please post your genuine Feedback or comments only related to this Blog Posts. Please do not post any Spam comments or Advertising kind of comments which will be Ignored.