The following is the code
Sub test()
Dim ws As Workbook
Dim wks As Worksheet
Dim wt As Workbook
Dim trgt As Range
Set wt = Workbooks("sample")
Set ws = Workbooks.Open("C:\Documents and Settings\Div\My Documents\dump")
Set trgt = wt.Sheets("test").Range("a:a").Find(What:="4/1/2013", LookAt:=xlWhole, LookIn:=xlFormulas).Offset(0, 7).Select
ws.Activate
ws.Sheets("Mob").Select
Cells.Find("DOM").Offset(2, 3).Select
trgt.PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationNone, False, True
ws.Activate
Cells.Find("BRD").Offset(2, 3).Select
Range(Selection, Selection.End(xlToRight)).Copy
trgt.PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationAdd, False, True
Set trgt = wt.Sheets("test").Range("a:a").Find(What:="4/1/2013", LookAt:=xlWhole, LookIn:=xlFormulas).Offset(0, 8)
ws.Activate
ws.Sheets("Mob").Select
Cells.Find("DOM").Offset(2, 3).Select
trgt.PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationNone, False, True
ws.Activate
Cells.Find("BRD").Offset(1, 3).Select
Range(Selection, Selection.End(xlToRight)).Copy
trgt.PasteSpecial xlPasteValuesAndNumberFormats, xlPasteSpecialOperationAdd, False, True
wt.ActiveSheet.Next.Activate
End Sub
the column A in the sheet named test is the one where I need to find 4/1/2013. Cell a2 contains the date say 2/1/2013 then cell a3 contains the formula a2+1 and it continues. So when I select the cell containing 4/1/2013 i see a formula in the formula bar say a32+1.