Please kindly finish this code.
I would to search for the word "Date :" in all sheets(sheet2 to sheets...) and if found, copy the value to sheet1
Ex : if found the word "date :" in sheet2 column A1, then copy A2 value and paste to sheet1 column A1. copy and paste sheet3 to sheet1 column B1. process it in order
Sub help()
Dim SearchString As String
Dim SearchRange As Range, cl As Range
Dim ws As Worksheet
SearchString = "Date :"
For Each ws In ActiveWorkbook.Worksheets
Set ws = ws.Cells.Find(What:=SearchString, _
After:=sh.Cells(1, 1), _
LookIn:=xlValues, _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False, _
SearchFormat:=False)
End Sub
Thank you so much