Dim FIND_VALUE As String
Dim j As Double
FIND_VALUE = "RDD1250 Due SO not Billed"
For j = 1 To Worksheets.Count
If Worksheets(j).Range("C7").Value = FIND_VALUE Then
Worksheets(j).Activate
Range("B13", Cells(Range("B13").Row, Columns.Count).End(xlToLeft).End(xlDown)).Select
Selection.Copy
This code is giving type error mismatch...when i try to run this code it gives proper results but giving type error mismatch when i try to run it for some other sheets.. can some one help on this as well partial search.. i tried with "*" as well but didnt get the result.