У меня есть следующий код ...
Суб тест ()
Workbooks("MAY10-Key Indicator Daily Reportcopy.xls").Sheets("Input").Activate
Set c = Range("B15:B45")
For Each cell In c
If cell.Value = Range("I5").Value Then
Workbooks("McKinney Daily Census Template NOV 10.xls").Sheets("McKinney").Range("C15:I15").Copy
cell.Offset(0, 37).PasteSpecial
End If
Next
Application.CutCopyMode = False
If Cell.Value = Date Then
Range(Cells(Cell.Row + 1, 3).Address, Cells(Cell.Row + 1, 9).Address).Select
Cells(Cell.Row + 1, 3).Activate
Exit For
End If
Next Cell
End Sub
В WB(шаблон ежедневной переписи McKinney ...) у меня есть столбец дат, который совпадает с другим WB. Когда дата меняется, мне нужно WB(McKinney ...), чтобы перейти к следующему диапазону строк. IE
11/01/10 - C15:I15
11/02/10 - C16:I16
11/03/10 - C17:I17
Что мне нужно добавить в мой код для достижения этой цели. Спасибо