I have a VBA script that copies a column (from an Excel spreadsheet) with formulas and glues only the result (Paste Special).
But I would like to automate this task, for example:
Whenever you add some information in the "A" column, the data in column "B" is automatically updated.
Here is an example of the code:
Public Sub pasteVal()
Range("A1:A10").Select
Selection.Copy
Range("B1:B10").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _:=False, Transpose:=False
End Sub