VBA Jak przekonwertować numer kolumny na kolumnę Excel

Function ColName(n)
    ColName = Split(Cells(, n).Address, "$")(1)
End Function
Excel Hero