VBA - 在连接的单元格之间插入空格

时间:2017-08-18 22:36:03

标签: excel vba excel-vba ms-office

此代码适用于我。但是,在目标单元格中​​,我想要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

一个男孩要做什么?我尝试的一切都给了我编译错误......

1 个答案:

答案 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