这段代码对我有用。但是,在目标单元格中,我想要 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
男孩该怎么做?我尝试的一切都会给我一个编译错误......
您需要在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