我想为VBA中的标准偏差计算动态选取行数。
目前我有以下代码:
Sub Stdev()
Dim x as integer
x=10
Range("E1").Select
ActiveCell.FormulaR1C1 = "=STDEV(R[1]C:R[5]C)"
Range("E1").Select
ActiveCell.FormulaR1C1 = "=STDEV(R[1]C:R[x]C)"'this is my attempt at dynamic calculation
End Sub
如何更正它以选择x?
中指定的行数答案 0 :(得分:1)
尝试:
Range("E1").FormulaR1C1 = "=STDEV(R[1]C:R[" & x & "]C)"