In sheet3 (c6:h6) data will get updated in 3 min.
I need to copy this data to another sheet4 (b6:G6) last row.
Error is coming in "Range("b1").End(xlDown).Offset(1, 0).Select"
Sub test()
Workbooks("nifty1.xlsm").Activate
Sheet3.Select
Range("c6:h6").Copy
Sheet4.Select
Range("b1").End(xlDown).Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Application.OnTime Now + TimeValue("00:03:10"), "test"
End Sub