If I enter carriage returns of Chr(10) in a cell, I cant seem to select the cell heading in the code below unless i take out the Chr(10) code. Is there a trick to this please?
Code:
' Extra Headings
.Cells(row, col + 1).FormulaR1C1 = "Calc" & Chr(10) & "Eval Date"
' Extra Values
.Cells(row + 1, col + 1).FormulaR1C1 = "=IF(RC9=""Null"",DATE(2010,3,31),RC9)"
' Date Time field format
Range("tblGlobalData[[Calc Eval Date]:[Calc Compl Date]]").NumberFormat = "dd mmm yyyy hh:mm"