I'm just trying to do a simple cut and paste to shift ranges in F:G to an unoccupied cell in D
but I keep getting that error message. My codes are in the Modules and I don't know what I'm doing wrong! Completely new to VBA. Highlighted portion: Range("F" & RowNum & ":G" & RowNum).Select
Sub MoveCells(RowNum as Integer)
Range(“F” & RowNum & ":G" & RowNum).Select
Selection.Cut
Range(“D” & RowNum).Select
ActiveSheet.Paste
End Sub