标签: vba excel-vba excel
我需要引用名称存储在变量J
J
ActiveCell.FormulaR1C1 = "=VLOOKUP(R[-1]C,' " & J & " '!R32C1:R" & row_count & "C32,2,0)"
我使用以下公式,但它无效
答案 0 :(得分:2)
您需要删除撇号后的空格:
ActiveCell.FormulaR1C1 = "=VLOOKUP(R[-1]C,'" & J & "'!R32C1:R" & row_count & "C32,2,0)"