Hi all,
I'm quite new to VBA, so I apologies if my knowledge of code is a bit flaky. What I'm trying to do is a 'For-Each' loop through a large range. The code should check the corresponding range in a another sheet and if the value of that range is not empty, copy that range into the corresponding range in the current sheet. It should do this for each cell address (I think).
With this fragment of code:
Dim Bcell As Range
For Each Bcell In Range("A1:D500")
If (Not (IsEmpty(Worksheets("Sheet2").Bcell.Value))) Then Worksheets("Sheet2").Bcell.Value = Worksheets("Sheet2").Bcell.Value
Next Bcell
I keep on getting a run-time error 438, saying that it doesnt support this property or method.
Can anyone help?
Thanks!
Bookmarks