1
1clncc
The below would search in the current worksheet rows containing myStr
then pasting those rows into another sheet ("5".
************************************************************
myStr = InputBox("Enter word to be searched")
If myStr = "" Then Exit Sub
Find_Range(myStr, Range("Eng_Name"), LookIn:=xlValues, LookAt:=
xlPart, MatchCase:=True).EntireRow.Copy Range("Sheet5!
D65536").End(xlUp).Offset(1, 0).EntireRow
*****************************************************
1) how to set counter in the find/paste operations to find out the
number of lines being pasted into sheet(5)?
2) then select those pasted lines.
then pasting those rows into another sheet ("5".
************************************************************
myStr = InputBox("Enter word to be searched")
If myStr = "" Then Exit Sub
Find_Range(myStr, Range("Eng_Name"), LookIn:=xlValues, LookAt:=
xlPart, MatchCase:=True).EntireRow.Copy Range("Sheet5!
D65536").End(xlUp).Offset(1, 0).EntireRow
*****************************************************
1) how to set counter in the find/paste operations to find out the
number of lines being pasted into sheet(5)?
2) then select those pasted lines.