gpt4 book ai didi

excel - 将列号转换为字母的函数?

转载 作者:行者123 更新时间:2023-12-01 16:14:35 24 4
gpt4 key购买 nike

有人有可以从数字返回列字母的 Excel VBA 函数吗?

例如,输入 100 应返回 CV

最佳答案

此函数返回给定列号的列字母。

Function Col_Letter(lngCol As Long) As String
Dim vArr
vArr = Split(Cells(1, lngCol).Address(True, False), "$")
Col_Letter = vArr(0)
End Function

第 100 列的测试代码

Sub Test()
MsgBox Col_Letter(100)
End Sub

关于excel - 将列号转换为字母的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12796973/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com