Thanks for the info, that allowed me to create the macro code I needed. In case anyone else has the question and needs the macro code:
The variable "lastrow" stores the final row in the worksheet
CS is the first empty column where I could use the information above
...
'This section is done to convert the numbers written as text in column A to numbers
Range("CS2").Formula = "=RC[-96]*1"
Range("CS2").Select
'This serves as pulling the formula down
Selection.AutoFill Destination:=Range("CS2:CS" & lastrow), Type:=xlFillDefault
'Calculations are set to manual, so there is the need to calculate
Worksheets("sheet1").Calculate
Range("CS2:CS" & lastrow).Copy
Range("A2").PasteSpecial xlPasteValues
'Delete extra column
Range("CS:CS").Delete
...
Bookmarks