Actually i have this macro . It concatenates rows if given keyword i
found in A column and puts result in C column . That chages should i d
to run all sheets once ? Now i have to change the name of the shee
every time i need to run macro
Code
-------------------
Sub testme(
Dim myCell As Rang
Dim myRng As Rang
Dim DestCell As Rang
Dim myWord As Strin
myWord = "house
With Worksheets("Sheet1"
Set myRng = .Range("A1", .Cells(.Rows.Count, "A").End(xlUp)
Set DestCell = .Range("C1"
End Wit
For Each myCell In myRng.Cell
With myCel
If LCase(.Value) = LCase(myWord) The
DestCell.Value = .Value & .Offset(0, 1).Valu
Set DestCell = DestCell.Offset(1, 0
End I
End Wit
Next myCel
End Su