VBA 使用CStr将数字类型转换为字符串
示例
Const zipCode As Long = 10012Dim zipCodeText As String
'Convert the zipCode number to a string of digit characters
zipCodeText = CStr(zipCode)
'zipCodeText = "10012"
以上是 VBA 使用CStr将数字类型转换为字符串 的全部内容, 来源链接: utcz.com/z/334591.html