I need to replace code
Sheet5.Range("N2:N24").Value = Sheet1.Range("B9")
with something like Sheet5.Range(Columns(14).Select & "2:" & Columns(14).Select & "24").Value = Sheet1.Range("B9")
but it gives an error. Basically I would like to replace the column letter with the index of the column. How is the syntax?
Many thanks, Electra