Sub SearchText_Move2_OtherSheets()
'This macro will find the Description till it occurs in column A
Application.ScreenUpdating = False
Dim SearchCell As Range
Dim SearchRange As Range
Dim SearchDescription As String
Dim FirstSearchCell As String
Worksheets("Sheet1").Activate
SearchDescription = InputBox("Enter text you want to search!")
Set SearchRange = Range("A2", Range("A1").End(xlDown))
Set SearchCell = SearchRange.Find(what:=SearchDescription, MatchCase:=False, lookat:=xlPart)
If SearchCell Is Nothing Then
MsgBox "Text was not found"
Else
FirstSearchCell = SearchCell.Address
Do
Range(SearchCell, SearchCell.End(xlToRight)).Copy
Worksheets("Description").Activate
ActiveCell.PasteSpecial
ActiveCell.Offset(1, 0).Select
Worksheets("Sheet1").Activate
Set SearchCell = SearchRange.FindNext(SearchCell)
Loop While SearchCell.Address <> FirstSearchCell
End If
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub