我正在尝试动态设置在执行宏时输入公式的单元格。这段代码将循环大约 10 次,每次都有一个新的员工部分。由部门订购。因此,当循环回到这一点时,第一个单元格将发生变化。
我收到此错误:
对象“_Global”的方法“范围”失败
这是我的代码:
'Select the top cell in the "%Working" Column
Range(Cells(StartTemp, 9)).Select
'Insert the Formula - Billable/(Billable + Unbillable) * 100 into Column I for each section
'Formula is 'C4/(C4+C5)*100
Range(Cells(StartTemp, 9)).Formula = "=RC[-6]/(RC[-6]+RC[-5]) *100"
Range(Cells(StartTemp, 9)).Select
Selection.NumberFormat = "0.00%"
'Insert the Formula into all cells in the section for this group.
Selection.AutoFill Destination:=Range(Cells(StartTemp, 9), Cells(EndTemp, 9)), Type:=xlFillDefault
Range(Cells(StartTemp, 9), Cells(EndTemp, 9)).Select
提前致谢!