I am a novice at VBA but I am hoping an expert can help me with what I am trying to do.
Essentially using Record Macro and my basic grasp of VBA I have created the below; what I am trying to do is change the B4,D4 to B5,D5 B6,D6 etc... for 100 loops.
I am completely stuck and was hoping that someone could point me in the right direction.
Many many thanks.
Dar
If Sheets("BUILDING").Range("B4").Value = "" Then
Else
Sheets("CALCULATOR").Select
Range("B1").ClearContents
Sheets("BUILDING").Select
Range("D4").Select
Selection.Copy
Sheets("CALCULATOR").Select
Range("B1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.Run "Test1"
End If