Hello,
I can't figure out why i'm getting a run time error here.
This works just fine
But for some reason when I add three ranges (example below) it gives me the run time error 450
"Wrong number of arguments or invalid property assignment"
Any help with this issue will be greatly appreciated!
I can't figure out why i'm getting a run time error here.
This works just fine
Code:
lastrow = Cells(Rows.Count, "A").End(xlUp).RowActiveSheet.Range("AQ4:AZ" & lastrow, "BR4:CR" & lastrow).Copy
But for some reason when I add three ranges (example below) it gives me the run time error 450
"Wrong number of arguments or invalid property assignment"
Code:
ActiveSheet.Range("M4:V" & lastrow, "AQ4:AZ" & lastrow, "BR4:CR" & lastrow).Copy
Any help with this issue will be greatly appreciated!