update C1

This commit is contained in:
simple321vip
2026-04-19 23:42:57 +08:00
parent de3f513230
commit 7f271043b7
5 changed files with 243 additions and 46 deletions

View File

@@ -319,3 +319,7 @@ Public Function FormatDateInput(ByVal inputStr As String) As String
FormatDateInput = inputStr
End If
End Function
Function ColNumToLetter(colNum As Long) As String
ColNumToLetter = Split(Cells(1, colNum).Address, "$")(1)
End Function