gpt4 book ai didi

VBA 字符串连接

转载 作者:行者123 更新时间:2023-12-04 22:37:31 25 4
gpt4 key购买 nike

是否有任何类似 Java 的解决方案用于在 VBA 中连接字符串?
我想以这样的方式使用 MsgBox:

...
Set UT = Workbooks(dropdownValue).Worksheets(1)
With UT
UT_rows = .Cells(3, 15).End(xlDown).Row
End With
MsgBox "Rows of the file: " + UT_rows
但是当我这样做时,我的代码此时挂断了。 (不兼容的类型)

最佳答案

您应该始终使用 &连接时;

MsgBox "Rows of the file: " & UT_rows

关于VBA 字符串连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3254104/

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