此代码适用于我。但是,在目标单元格中,我想要A2和B2的值之间的空格:
For j = 1 To lastRow3
If ws.Range("A" & j) = "OKUMA LATHE" Then
Cells(j, lastCol2 + 2).Formula = "=$A2&$B2"
End If
Next j
一个男孩要做什么?我尝试的一切都给了我编译错误......
答案 0 :(得分:3)
您需要在VBA中加倍报价
For j = 1 To lastRow3
If ws.Range("A" & j) = "OKUMA LATHE" Then
Cells(j, lastCol2 + 2).Formula ="=$A2 & "" "" & $B2"
End If
Next j