Guys,
Can I accomplish the following code:
with something like:
Thanks.
Can I accomplish the following code:
Code:
Range("TotalCost").Copy
Sheets("Programming").Select
ActiveCell.Offset(RowOffset:=0, ColumnOffset:=2).Activate
ActiveCell.Value = Sheets("Operations").Range("TotalCost")
Code:
Sheets("Programming").ActiveCell.Offset(0,2) = Sheets("Operations").Range("TotalCost")
Thanks.