'列數(shù)轉(zhuǎn)字母 Function CNtoW(ByVal num As Long) As String CNtoW = Replace(Cells(1, num).Address(False, False), "1", "") End Function '字母轉(zhuǎn)列數(shù) Function CWtoN(ByVal AB As String) As Long CWtoN = Range("a1:" & AB & "1").Cells.Count End Function
|