I can get everything but the original column "U" to copy over (which is a date field). Literally everything else works but this one field, any ideas as to why this one field would not copy over?
Here's what I wrote so far:
Sub CopiesandMovesReferralDatafromOLAB()
Cells.Select
Range("D:D,C:C,E:E,AM:AM,F:F,R:R,AI:AI,AJ:AJ,U:U").Select
Application.CutCopyMode = False
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
Range("A1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("B1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("C1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("D1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("E1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("F1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("G1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("H1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("I1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("J1").Select
ActiveCell.FormulaR1C1 = "xxx"
Range("A1:J1").Select
Selection.Font.Bold = True
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 10053222
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Cells.Select
Cells.EntireColumn.AutoFit
End Sub