I have a spreadsheet that must have values from three seperate columns copied and pasted into three other columns. The columns being copied from have their data generated from formulas. I need to paste the values only into the new columns. The original values and formulas must be left in the columns being copied from.
Unfortunately the values in the original columns are being erased and they are not being copied over to the new columns in the script that I am working with. Here is what I have so far.
Range("Table1[Cumulative % Complete]").Select
Selection.Copy
Range("Table1[Actual % Complete]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1[Revenue Realized]").Select
Application.CutCopyMode = xlCopy
Selection.Copy
Range("Table1[Realized Revenue]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1[Cumulative Revenue]").Select
Application.CutCopyMode = xlCopy
Selection.Copy
Range("Table1[Cumulative Revenues]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Unfortunately the values in the original columns are being erased and they are not being copied over to the new columns in the script that I am working with. Here is what I have so far.
Range("Table1[Cumulative % Complete]").Select
Selection.Copy
Range("Table1[Actual % Complete]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1[Revenue Realized]").Select
Application.CutCopyMode = xlCopy
Selection.Copy
Range("Table1[Realized Revenue]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("Table1[Cumulative Revenue]").Select
Application.CutCopyMode = xlCopy
Selection.Copy
Range("Table1[Cumulative Revenues]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False