VBA字符串连接

poe*_*orn 4 string vba

在VBA中是否有类似Java的concatenatin字符串解决方案?

我想以这样的方式使用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
Run Code Online (Sandbox Code Playgroud)

但是当我这样做时,我的代码就会挂起.(不兼容的类型)

Ale*_* K. 11

&连接时应始终使用;

MsgBox "Rows of the file: " & UT_rows
Run Code Online (Sandbox Code Playgroud)