Forum Discussion
icar1udm211990
Nov 28, 2021Copper Contributor
Operator & in VBA badfunction
The operator & have problems with strings. Look at the macro: Sub test( wsimple): wsimple = "T" & "W": End sub. The result of the variable simple must be "TW" but the result was nothing. ¿ May you...
Christian_Hould
Nov 30, 2022Copper Contributor
It work very well on my VBA Excel !
Private Sub Tempo()
Dim A As String
A = "T" & "W"
Debug.Print A
End Sub
Private Sub Tempo()
Dim A As String
A = "T" & "W"
Debug.Print A
End Sub