VBA常用自定义函数 - 列数转列名&列名转列数
Posted hewish
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VBA常用自定义函数 - 列数转列名&列名转列数相关的知识,希望对你有一定的参考价值。
‘列数转字母
Public Function CNtoW(ByVal number As Long) As String
CNtoW = Replace(Cells(1, number).Address(False, False), "1", "")
End Function
‘字母转列数
Public Function CWtoN(ByVal letters As String) As Long
CWtoN = Range("a1:" & letters & "1").Cells.Count
End Function
以上是关于VBA常用自定义函数 - 列数转列名&列名转列数的主要内容,如果未能解决你的问题,请参考以下文章