Hello! I have the next code and is working but i would like to make it a loop, for every single cell there is with information.
Sub Internet()
If Sheets("Draft").Range("G7").Value2 = "INT1" Then
Sheets("U-Detail").Range("R11").Value2 = Range("'GL Accounts'!B1").Value2 & Sheets("Draft").Range("D7").Value2
Else
Sheets("U-Detail").Range("R11").ClearContents
End If
End Sub
On Draft.G7 sometimes it may be more values below and i would like to do the same until the last row.
If anybody could help i would be really grateful!
Sub Internet()
If Sheets("Draft").Range("G7").Value2 = "INT1" Then
Sheets("U-Detail").Range("R11").Value2 = Range("'GL Accounts'!B1").Value2 & Sheets("Draft").Range("D7").Value2
Else
Sheets("U-Detail").Range("R11").ClearContents
End If
End Sub
On Draft.G7 sometimes it may be more values below and i would like to do the same until the last row.
If anybody could help i would be really grateful!