bgarcia94550
Technical User
I'm new to VBA coding so please educate me. I'm looking to do the following:
Read a range of cells
If the active cell is > 1
Copy the cell
Move to another cell: offset(-3,-2)
Paste the value
Else
Read the next record
I started playing around and got the following code but it's not what I want
Sub Ben()
Selection.Copy
Range("C659").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
Read a range of cells
If the active cell is > 1
Copy the cell
Move to another cell: offset(-3,-2)
Paste the value
Else
Read the next record
I started playing around and got the following code but it's not what I want
Sub Ben()
Selection.Copy
Range("C659").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub