插入公式时出错'1004'
在Excel 2013中使用VBA插入公式时总是出现此错误:
运行时错误“1004”:应用程序定义或对象定义的错误
这是我的代码:
strFormula = "=(K19 * P13) + (I19 * P13/3,2)" strCelda = "M20" Range(strCelda).Formula = strFormula <---- Error
我已经尝试过这些值:
"=(K19 * P13) + (I19 * P13/3.2)" "=(K19 * P13) + I19 * (P13/3.2)"
没有运气。 无论我input什么价值,我仍然得到相同的错误。
这工作:
strFormula = "=(K19*P13)+(I19*P13/3.2)"
用点replace逗号。 在VBA中,无论区域设置如何,您都需要使用点。